filesystem vs razorpay-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | razorpay-mcp-server by razorpay | |
|---|---|---|
| Stars | ★ 85,748 | ★ 220 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | FinanceDeveloper ToolsE-commerce |
| Language | TypeScript | Go |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
razorpay-mcp-server · Summary
Official Razorpay MCP Server for payment processing with remote/local setup options.
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
razorpay-mcp-server · Use cases
- Automating payment workflows in business applications
- Building AI-powered payment processing assistants
- Integrating Razorpay capabilities into development environments
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.
razorpay-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.