- Home
- MCP servers
- Ramp
Ramp
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"dragonkhoi-ramp-mcp": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/ramp-mcp/build/index.js",
"RAMP_API_KEY",
"RAMP_CLIENT_ID"
],
"env": {
"RAMP_API_KEY": "YOUR_RAMP_API_KEY",
"RAMP_CLIENT_ID": "YOUR_RAMP_CLIENT_ID"
}
}
}
}Ramp MCP is a simple server that interfaces with the Ramp API, letting you access Ramp data from MCP clients such as Cursor or Claude Desktop. It enables you to query transactions and other Ramp data through your preferred MCP client with a lightweight, local bridge.
How to use
You run Ramp MCP as a local stdio server and connect to it from your MCP client. Provide your Ramp API key and client ID when you start the server. Once running, open your MCP client and point it at the Ramp MCP entry point to query your Ramp data, such as fetching the latest transactions or balances. You can use the example command to start the server locally and then issue requests from your client.
How to install
Prerequisites you need before installing Ramp MCP: Node.js and npm (or a compatible Node runtime). Ensure you have access to your Ramp Settings to obtain your Ramp API Key and Ramp Client ID.
# Install Ramp MCP via Smithery (Claude Desktop)
npx -y @smithery/cli install @dragonkhoi/mercury-mcp --client claude
To install the Ramp MCP for Cursor via Smithery, use the following runtime command with your Ramp credentials. Replace YOUR_MERCURY_API_KEY and YOUR_CLIENT_ID with your actual Ramp values.
npx -y @smithery/cli@latest run @dragonkhoi/mercury-mcp --config "{\"mercury_api_key\":\"YOUR_MERCURY_API_KEY\",}"
Clone the Ramp MCP repository and run it locally. This builds the server, then you start it with your Ramp credentials.
# Clone the Ramp MCP repository
git clone https://example.com/dragonkhoi/ramp-mcp.git
cd ramp-mcp
# Install dependencies and build
npm install
npm run build
# Start the local Ramp MCP server (provide your keys as arguments)
node /ABSOLUTE/PATH/TO/ramp-mcp/build/index.js RAMP_API_KEY RAMP_CLIENT_ID
Additional setup notes
If you plan to run the server locally, you will manually pass the Ramp API Key and Ramp Client ID as command-line arguments when starting the server. You can also use MCP client configuration from Smithery to streamline the setup.