metorial-platform vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
metorial-platform by metorial | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 207 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
metorial-platform · Summary
Metorial is an enterprise-grade MCP platform that connects AI models to thousands of APIs and tools with one-liner SDKs.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
metorial-platform · Use cases
- Building enterprise-grade AI applications that need to connect to multiple data sources and APIs
- Developers who want to simplify MCP integration in their AI projects without dealing with server configurations
- Teams requiring monitoring and debugging capabilities for their AI integrations across thousands of MCP servers
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
metorial-platform · Install
Installation
SDK Installation
Install the SDK for your preferred language:
# For JavaScript/TypeScript
npm install @metorial/node
# For Python
pip install metorialSelf-Hosting
- Clone the repository:
``bash git clone https://github.com/metorial/metorial-platform.git cd metorial-platform ``
- Set up environment variables in
.envfile
- Run with Docker:
``bash docker-compose up -d ``
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.