Install
$ agentstack add mcp-openpumpio-openpump ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
OpenPump
MCP-native Solana trading infrastructure. TypeScript SDK, MCP server, ElizaOS plugin, and Solana Agent Kit integration for pump.fun automation.
Website: openpump.io | Docs: openpump.io/docs | X: @openpumpio
Packages
| Package | npm | Description | |---|---|---| | [@openpump/mcp](./packages/mcp-client) | [](https://www.npmjs.com/package/@openpump/mcp) | MCP server for Claude Desktop, Cursor, and Claude Code | | [@openpump/sdk](./packages/sdk) | [](https://www.npmjs.com/package/@openpump/sdk) | TypeScript SDK for the OpenPump API | | [@openpump/eliza-plugin](./packages/eliza-plugin) | [](https://www.npmjs.com/package/@openpump/eliza-plugin) | ElizaOS plugin for conversational token trading | | [@openpump/solana-agent-kit](./packages/solana-agent-kit) | [](https://www.npmjs.com/package/@openpump/solana-agent-kit) | Solana Agent Kit v2 plugin |
Quick Start
MCP Server (Claude Desktop / Cursor / Claude Code)
npx @openpump/mcp init
Auto-detects installed AI clients and configures them. See [@openpump/mcp README](./packages/mcp-client) for details.
SDK
npm install @openpump/sdk
import { OpenPump } from '@openpump/sdk';
const client = new OpenPump({ apiKey: 'op_sk_live_...' });
// Create a token
const job = await client.tokens.create({
name: 'My Token',
symbol: 'MTK',
description: 'A new token on pump.fun',
});
// Buy tokens
await client.trading.buy({
mint: 'TOKEN_MINT_ADDRESS',
walletId: 'your-wallet-id',
amountSol: 0.1,
});
ElizaOS Plugin
npm install @openpump/eliza-plugin
See [@openpump/eliza-plugin README](./packages/eliza-plugin) for setup.
Solana Agent Kit
npm install @openpump/solana-agent-kit
See [@openpump/solana-agent-kit README](./packages/solana-agent-kit) for setup.
Getting an API Key
- Sign up at openpump.io
- Go to Settings and generate an API key
- Keys start with
op_sk_live_
License
MIT
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: openpumpio
- Source: openpumpio/openpump
- License: MIT
- Homepage: https://openpump.io
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.