mcp-link vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-link by automation-ai-labs | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 605 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsWeb ScrapingOther | File SystemDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-link · Summary
MCP Link automatically converts any OpenAPI V3 API into a fully-functional MCP server.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-link · Use cases
- Convert existing REST APIs to MCP servers for AI agent integration without code changes
- Rapidly prototype MCP interfaces for new APIs using OpenAPI specifications
- Unify API access across different services through a standardized MCP interface
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-link · Install
Installation
# Clone repository
git clone https://github.com/automation-ai-labs/mcp-link.git
cd mcp-link
# Install dependencies
go mod downloadRunning
# Specify port
go run main.go serve --port 8080 --host 0.0.0.0Usage in Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"openapi-mcp": {
"url": "http://localhost:8080/sse?s=[OpenAPI-Spec-URL]&u=[API-Base-URL]&h=[Auth-Header]:[Value-Prefix]"
}
}
}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.