filesystem vs holaspirit-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | holaspirit-mcp-server by syucream | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | ProductivityDeveloper ToolsOther |
| Language | TypeScript | JavaScript |
| Last commit | this month | 11 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
holaspirit-mcp-server · Summary
An MCP server providing access to Holaspirit API for organizational governance data.
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
holaspirit-mcp-server · Use cases
- AI assistants helping analyze organizational governance structures in Holaspirit
- Automating reporting of roles, circles, and policies for compliance purposes
- Integration with other systems through Holaspirit data via MCP protocol
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.
holaspirit-mcp-server · Install
Installation
Via Smithery
npx -y @smithery/cli install holaspirit-mcp-server --client claudeManual Installation
npm install holaspirit-mcp-serverConfiguration
Create a .env file with:
HOLASPIRIT_API_TOKEN=your_api_token_here
HOLASPIRIT_ORGANIZATION_ID=your_organization_id_hereClaude Desktop Configuration
"holaspirit": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
}