mcp-server-any-openapi vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-any-openapi by baryhuang | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 82 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsWeb Scraping | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
mcp-server-any-openapi · Summary
An MCP server enabling Claude to discover and call any API endpoint through semantic search of OpenAPI specifications.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-server-any-openapi · Use cases
- Integrating private APIs with Claude Desktop without updating client configuration
- Working with large OpenAPI specifications that would overwhelm standard MCP clients
- Enabling natural language API discovery across multiple API services
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
mcp-server-any-openapi · Install
Installing via Smithery
npx -y @smithery/cli install @baryhuang/mcp-server-any-openapi --client claudeUsing pip
pip install mcp-server-any-openapiClaude Desktop Configuration
{
"mcpServers": {
"any_openapi": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"OPENAPI_JSON_DOCS_URL=https://api.example.com/openapi.json",
"-e",
"MCP_API_PREFIX=finance",
"-e",
"GLOBAL_TOOL_PROMPT='Access to insights apis for ACME Financial Services abc.com .",
"buryhuang/mcp-server-any-openapi:latest"
]
}
}
}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.