Glama-MCP-Server-Search vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Glama-MCP-Server-Search by kongyo2 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | SearchDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
Glama-MCP-Server-Search · Summary
An MCP server for searching and exploring MCP servers from the Glama directory.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Glama-MCP-Server-Search · Use cases
- Help developers discover relevant MCP servers for their projects
- Integrate server search functionality into AI applications
- Monitor and analyze trends in MCP server development
- Create automated workflows that interact with MCP directory 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
Glama-MCP-Server-Search · Install
npm install @kongyo2/glama-mcp-server-searchStart the server:
npm run startFor development mode:
npm run devFor Claude Desktop, add this to your config.json:
{
"mcpServers": {
"glama-search": {
"command": "node",
"args": ["dist/index.js"]
}
}
}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.