volcano-agent-sdk vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
volcano-agent-sdk by Kong | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 392 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
volcano-agent-sdk · Summary
TypeScript SDK for building AI agents that combine LLM reasoning with MCP tools, supporting multiple providers and advanced patterns.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
volcano-agent-sdk · Use cases
- Building autonomous AI agents that can interact with external tools via MCP
- Creating multi-agent workflows where specialized agents collaborate under a coordinator
- Developing production-ready AI applications with built-in observability and error handling
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
volcano-agent-sdk · Install
npm install @volcano.dev/agentFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"volcano-agent": {
"command": "npx",
"args": ["@volcano.dev/agent", "server"]
}
}
}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.