agent-kit vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
agent-kit by KeyID-AI | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 689 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 2 mo ago | this month |
agent-kit · Summary
MCP email server with 27 tools for inbox, sending, contacts and auto-reply functionality.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
agent-kit · Use cases
- AI agents autonomously managing email communications and responses
- Building email-enabled chatbots that can send and receive messages
- Automating email workflows with scheduled delivery and auto-reply features
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
agent-kit · Install
Install
npm install @keyid/agent-kit
# or
yarn add @keyid/agent-kitWith Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"keyid": {
"command": "npx",
"args": ["@keyid/agent-kit"],
"env": {
"KEYID_PUBLIC_KEY": "...hex...",
"KEYID_PRIVATE_KEY": "...hex..."
}
}
}
}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.