Genexus18MCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Genexus18MCP by lennix1337 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | this month | this month |
Genexus18MCP · Summary
GeneXus 18 MCP server enabling AI agents to read, edit, and analyze KB objects via Model Context Protocol.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Genexus18MCP · Use cases
- AI assistant analyzing and refactoring existing GeneXus application code
- Automated documentation generation for GeneXus knowledge bases
- Batch operations across multiple GeneXus objects through AI agent commands
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
Genexus18MCP · Install
Installation
- Run the installer:
npx genexus-mcp@latest init --kb "C:\KBs\YourKB" --gx "C:\Program Files (x86)\GeneXus\GeneXus18" - Register the MCP in your AI client (auto-detected for Claude Desktop, Claude Code, Cursor, and Antigravity)
- Restart your AI client and test with prompts like "list all transactions in my KB"
For Claude Desktop, the configuration will be auto-added to claude_desktop_config.json
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.