mcp-typescript-sdk vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-typescript-sdk by emqx | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 97 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsCommunicationAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-typescript-sdk · Summary
A TypeScript SDK for implementing MCP over MQTT with full type safety, supporting both browser and Node.js environments.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-typescript-sdk · Use cases
- Building cross-platform AI agents with browser control capabilities
- Creating distributed systems with MCP communication over MQTT
- Developing IoT applications with AI capabilities using MCP
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
mcp-typescript-sdk · Install
Installation
npm install @emqx-ai/mcp-mqtt-sdkClaude Desktop Integration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"mqtt-mcp": {
"command": "npx",
"args": ["@emqx-ai/mcp-mqtt-sdk"],
"env": {
"MQTT_HOST": "mqtt://localhost:1883"
}
}
}
}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.