filesystem vs agentql-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | agentql-mcp by tinyfish-io | |
|---|---|---|
| Stars | ★ 85,748 | ★ 170 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Web ScrapingDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Shell |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
agentql-mcp · Summary
AgentQL MCP server enables structured web data extraction via a single tool with clear configuration across multiple MCP clients.
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
agentql-mcp · Use cases
- Extract structured data from websites for research and analysis
- Automate data collection from e-commerce sites for price monitoring
- Gather information from news sites for content aggregation
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.
agentql-mcp · Install
Installation
- Install the package globally:
npm install -g agentql-mcp- Configure Claude Desktop:
Add to claude_desktop_config.json:
{
"mcpServers": {
"agentql": {
"command": "npx",
"args": ["-y", "agentql-mcp"],
"env": {
"AGENTQL_API_KEY": "YOUR_API_KEY"
}
}
}
}- Get your API key from the [AgentQL Dev Portal](https://dev.agentql.com)