everything vs razorpay-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | razorpay-mcp-server by razorpay | |
|---|---|---|
| Stars | ★ 85,748 | ★ 220 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper ToolsE-commerce |
| Language | TypeScript | Go |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
razorpay-mcp-server · Summary
Official Razorpay MCP Server for payment processing with remote/local setup options.
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
razorpay-mcp-server · Use cases
- Automating payment workflows in business applications
- Building AI-powered payment processing assistants
- Integrating Razorpay capabilities into development environments
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-everythingrazorpay-mcp-server · Install
Installation
Remote Server (Recommended)
For Remote MCP Server, you only need Node.js installed (which includes npm and npx):
# Install Node.js using Homebrew (macOS)
brew install node
# Or using Chocolatey (Windows)
choco install nodejsConfiguration with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"rzp-mcp-server": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.razorpay.com/mcp",
"--header",
"Authorization: Basic <Merchant Token>"
]
}
}
}Replace <Merchant Token> with your Razorpay merchant token.