peta-core vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
peta-core by dunialabs | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 47 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Ops & InfraSecurityDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
peta-core · Summary
Production-ready MCP control plane with security, policy enforcement, and audit capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
peta-core · Use cases
- Enterprise deployment of MCP servers with centralized policy enforcement and audit controls
- Organizations requiring secure management of API credentials and OAuth tokens
- Teams building internal AI tool catalogs with progressive disclosure and discovery profiles
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
peta-core · Install
Installation
Peta Core can be deployed using Docker or as a Node.js application.
Docker Deployment
docker run -d --name peta-core -p 8080:8080 \
-e DATABASE_URL=postgresql://user:pass@localhost:5432/peta \
-e NEXTAUTH_SECRET=your-secret-key \
petaio/peta-core:latestNode.js Deployment
npm install -g @peta/core
peta-core startConfiguration
Configure MCP clients to connect to Peta Core:
{
"mcpServers": {
"peta": {
"command": "npx",
"args": ["@modelcontextprotocol/server-peta", "--host", "localhost", "--port", "8080"]
}
}
}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.