everything vs gram
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | gram by speakeasy-api | |
|---|---|---|
| Stars | ★ 85,748 | ★ 233 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
gram · Summary
Gram is a platform for creating, curating, and hosting MCP servers with TypeScript SDK and OpenAPI support.
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
gram · Use cases
- Host one or more remote MCP servers at a custom domain like mcp.{your-company}.com
- Power in-application chat by exposing context from internal APIs through tools
- Manage and secure MCP servers for an entire organization through a unified control plane
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-everythinggram · Install
Install the Gram CLI:
curl -fsSL https://go.getgram.ai/cli.sh | bashCreate a new Gram function:
npm create @gram-ai/function@latest
cd my_function
npm run build
npm run pushTo use in Claude Desktop, add to config.json:
{
"mcpServers": {
"gram": {
"command": "npx",
"args": ["@gram-ai/function"]
}
}
}