everything vs SupaThings-MCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | SupaThings-MCP by soycanopa | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
SupaThings-MCP · Summary
Things 3 MCP server for macOS that combines SQLite reads with URL writes for AI agents.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
SupaThings-MCP · Use cases
- AI agents creating and organizing new projects with appropriate headings in Things
- Automating task placement based on project structure and semantic analysis
- Generating project summaries and planning insights from Things data
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingSupaThings-MCP · Install
Installation
1) Run with npx (no install)
npx -y supathings-mcp2) Global install from npm
npm install -g supathings-mcpAlias also available: things-mcp
3) MCP config example
{
"mcpServers": {
"supathings": {
"command": "npx",
"args": ["-y", "supathings-mcp"]
}
}
}4) Configure MCP in your client
Codex:
codex mcp add supathings -- npx -y supathings-mcpClaude Code:
claude mcp add --transport stdio supathings -- npx -y supathings-mcpGemini CLI:
gemini mcp add -s user supathings npx -y supathings-mcp