Mammoth MCP Server
Provides tools for interacting with Mammoth Protocol on the Solana blockchain, enabling AI agents to discover cycles, get quotes, buy tokens, and manage rights.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mammoth MCP Serverwhat are the current open cycles?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@mammoth-protocol/mcp-server
MCP (Model Context Protocol) server for Mammoth Protocol.
Makes Mammoth a native tool for any LLM agent — Claude, GPT, Gemini, Eliza, Virtuals, ai16z, and any other MCP-compatible system. No custom integration per agent. One server, all of them.
Quick Start
npx @mammoth-protocol/mcp-serverRead-only by default (discovery, quotes, snapshots). Add a wallet for buy execution:
MAMMOTH_WALLET_KEY='[your-keypair-json-array]' npx @mammoth-protocol/mcp-serverRelated MCP server: Armor Crypto MCP
Connect to Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"mammoth": {
"command": "npx",
"args": ["@mammoth-protocol/mcp-server"],
"env": {
"SOLANA_CLUSTER": "devnet"
}
}
}
}With buy execution:
{
"mcpServers": {
"mammoth": {
"command": "npx",
"args": ["@mammoth-protocol/mcp-server"],
"env": {
"SOLANA_CLUSTER": "mainnet-beta",
"SOLANA_RPC_URL": "https://your-rpc-endpoint.com",
"MAMMOTH_WALLET_KEY": "[your,keypair,as,json,array]"
}
}
}
}Connect to Cursor / Windsurf / Cline
Add to your MCP config file (.cursor/mcp.json or equivalent):
{
"mcpServers": {
"mammoth": {
"command": "npx",
"args": ["@mammoth-protocol/mcp-server"]
}
}
}Connect to a Custom Agent (Eliza, Virtuals, ai16z)
const { Client } = require('@modelcontextprotocol/sdk/client/index.js');
const { StdioClientTransport } = require('@modelcontextprotocol/sdk/client/stdio.js');
const transport = new StdioClientTransport({
command: 'npx',
args: ['@mammoth-protocol/mcp-server'],
env: { SOLANA_CLUSTER: 'devnet' },
});
const client = new Client({ name: 'my-agent', version: '1.0.0' });
await client.connect(transport);
// List all open cycles
const result = await client.callTool({ name: 'mammoth_get_open_cycles', arguments: {} });
console.log(result.content[0].text);
// Get snapshot for a specific project
const snap = await client.callTool({
name: 'mammoth_get_cycle_snapshot',
arguments: { mintAddress: 'YOUR_MINT_ADDRESS' }
});
// Get a buy quote
const quote = await client.callTool({
name: 'mammoth_buy_quote',
arguments: { mintAddress: 'YOUR_MINT_ADDRESS', solAmount: 0.5 }
});Available Tools
Tool | Description |
| All active cycles with price, fill %, and curve type |
| Full decision snapshot for a specific mint |
| All Mammoth projects with supply mode and cycle count |
| Cycles where rights window is currently open |
| Check if a wallet has unexercised rights |
| Calculate tokens out for SOL in — no transaction |
| Execute a buy (requires |
| Full protocol mechanics and parameter reference |
Available Resources
URI | Description |
| Protocol constants and parameter definitions |
Environment Variables
Variable | Default | Description |
| Devnet public RPC | RPC endpoint (use a private endpoint for production) |
|
|
|
| none | Keypair as JSON array or base58 string. Required for buy execution. |
Why Mammoth for AI Agents
Mammoth Protocol is designed for autonomous participation:
Bounded curves — deterministic pricing. A bot calculates exact cost before submitting. No AMM slippage surprises.
Cycle events — agents only need to act at defined moments (cycle open, rights window, close). No constant monitoring required.
Rights system — a bot holding from Cycle 1 gets guaranteed first access to Cycle 2 at base price. Structurally advantaged position.
AuthorityConfig — a principal (human or AI) can delegate specific operations to an operator bot with explicit permissions and spending limits.
No other launchpad was built for this.For Portfolio AI Agents
If you're building an AI that manages a user's high-growth crypto allocation:
Call
mammoth_get_open_cyclesto discover available cyclesCall
mammoth_get_cycle_snapshoton interesting projectsCall
mammoth_buy_quoteto calculate exact outcomePresent to user or execute autonomously (if authorized)
Subscribe to
CycleOpenedevents via the SDK for zero-latency triggers
The whole flow is programmatic. No UI. No human clicking buttons.
SDK
For direct programmatic access (without MCP):
npm install @mammoth-protocol/sdkLinks
Protocol: https://mammoth-protocol.vercel.app
AI Reference: https://mammoth-protocol.vercel.app/ai-reference
Protocol Reference: https://mammoth-protocol.vercel.app/protocol
MIT — Kelvinsinferno Studio
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kelvinsinferno/mammoth-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server