graphlit-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
graphlit-mcp-server by graphlit | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 375 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
graphlit-mcp-server · Summary
MCP server connecting Graphlit platform with rich tools for knowledge management and RAG across various data sources.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
graphlit-mcp-server · Use cases
- Building a centralized knowledge base from multiple developer and product management tools
- Implementing RAG capabilities with content from various sources like Slack, GitHub, and Notion
- Creating AI-powered search across documents, web pages, and communications
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
graphlit-mcp-server · Install
Install the Graphlit MCP Server via npx:
npx -y graphlit-mcp-serverFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"graphlit": {
"command": "npx",
"args": ["-y", "graphlit-mcp-server"],
"env": {
"GRAPHLIT_ORGANIZATION_ID": "your-organization-id",
"GRAPHLIT_ENVIRONMENT_ID": "your-environment-id",
"GRAPHLIT_JWT_SECRET": "your-jwt-secret"
}
}
}
}Required environment variables:
GRAPHLIT_ORGANIZATION_IDGRAPHLIT_ENVIRONMENT_IDGRAPHLIT_JWT_SECRET
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.