everything vs agent-toolkit
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | agent-toolkit by sanity-io | |
|---|---|---|
| Stars | ★ 85,748 | ★ 137 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsDatabase |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agent-toolkit · Summary
MCP server providing direct access to Sanity projects with content management tools and development best practices.
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
agent-toolkit · Use cases
- Create and manage Sanity content through AI agents using MCP tools
- Deploy and update Sanity schemas programmatically
- Apply Sanity best practices automatically during development
- Generate and transform images within Sanity content
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-everythingagent-toolkit · Install
Quick Install
For most MCP-compatible clients:
npx sanity@latest mcp configureManual Install
Add to your MCP configuration (format varies by client):
{
"mcpServers": {
"Sanity": {
"type": "http",
"url": "https://mcp.sanity.io"
}
}
}Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"Sanity": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.sanity.io", "--transport", "http-only"]
}
}
}