CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
jacksun911 avatar

Megalaunch Mcp

jacksun911/megalaunch-mcp
authSTDIOregistry active
Summary

This server connects Claude and other MCP clients to MegaLaunch's Solana meme token deployment service on pump.fun. You get six tools: check service status and recent launches, fetch pricing for Basic and Premium packages, create new token orders, list and filter your orders, get detailed order status, and cancel unpaid orders. Requires a MegaLaunch API key for authenticated endpoints. Reach for this if you're launching meme tokens programmatically and want AI assistance with the order management workflow, including bundled buys and Jito integration. The server wraps their REST API at vernal.zylos.coco.xyz/megalaunch into conversational commands.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

MegaLaunch MCP Server

MCP (Model Context Protocol) server for MegaLaunch — an AI-powered meme token launch service on Solana. This server allows AI tools like Claude Desktop, Cursor, Windsurf, and others to discover and use MegaLaunch directly.

Tools

ToolDescription
megalaunch_statusCheck service status and recent launch statistics
megalaunch_pricingGet current pricing for Basic and Premium packages
megalaunch_create_orderCreate a new meme token launch order on pump.fun
megalaunch_list_ordersList your token launch orders with optional filters
megalaunch_get_orderGet detailed status of a specific order
megalaunch_cancel_orderCancel a pending (unpaid) order

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "megalaunch": {
      "command": "node",
      "args": ["/path/to/mcp-server/index.js"],
      "env": {
        "MEGALAUNCH_API_KEY": "ml_your_api_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root or ~/.cursor/mcp.json globally:

{
  "mcpServers": {
    "megalaunch": {
      "command": "node",
      "args": ["/path/to/mcp-server/index.js"],
      "env": {
        "MEGALAUNCH_API_KEY": "ml_your_api_key_here"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "megalaunch": {
      "command": "node",
      "args": ["/path/to/mcp-server/index.js"],
      "env": {
        "MEGALAUNCH_API_KEY": "ml_your_api_key_here"
      }
    }
  }
}

Claude Code

claude mcp add megalaunch -- node /path/to/mcp-server/index.js

Set the API key as an environment variable before launching Claude Code, or add it to your shell profile:

export MEGALAUNCH_API_KEY="ml_your_api_key_here"

Environment Variables

VariableRequiredDefaultDescription
MEGALAUNCH_API_KEYYes (for authenticated endpoints)—Your MegaLaunch API key
MEGALAUNCH_API_URLNohttps://vernal.zylos.coco.xyz/megalaunchAPI base URL

Development

# Install dependencies
npm install

# Test server startup (sends an MCP initialize request)
echo '{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}},"id":1}' | MEGALAUNCH_API_KEY=test node index.js
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

MEGALAUNCH_API_KEY*secret

Your MegaLaunch API key

Categories
Finance & Commerce
Registryactive
Packagemegalaunch-mcp
TransportSTDIO
AuthRequired
UpdatedApr 12, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
jnilrac avatar
Secant Agent Research Pack

jnilrac/secant-agent-research-mcp

Paid MCP web research for agents: search, extraction, citations, and x402 payment discovery.
joelasota avatar
Synmerco — Confidential Escrow for AI Agent Commerce

joelasota/synmerco

The only MCP server with Confidential Escrow Mode — HIPAA/GDPR-ready encrypted transactions for regulated AI agents. 46 tools for the full agent commerce lifecycle. **Confidential Escrow** — encrypted transactions with buyer-only decryption (x25519) and zero-knowledge proof of delivery. The escrow system never sees the work product. Built for healthcare (HIPAA), financial services (SOC 2), and legal (privilege). **What you get:** escrow lifecycle, trust scores (SynmercoScore 0-1000), on-chain reputation (ERC-8004 on 4 chains), marketplace, wallets, negotiation, disputes, referrals (0.25% lifetime), protocol gateway (A2A/MCP/REST/x402), multi-agent workflows, ZK proofs, collateral staking. **10 tools work free — no API key needed.** $1K Shield Insurance per escrow. 3.25% flat fee. 179K+ agents in ecosystem.
joelasota avatar
Synmerco — Confidential Escrow for AI Agent Commerce

joelasota/synmerco-c2d64eaf

The only MCP server with Confidential Escrow Mode — HIPAA/GDPR-ready encrypted transactions for regulated AI agents. 46 tools for the full agent commerce lifecycle. **Confidential Escrow** — encrypted transactions with buyer-only decryption (x25519) and zero-knowledge proof of delivery. The escrow system never sees the work product. Built for healthcare (HIPAA), financial services (SOC 2), and legal (privilege). **What you get:** escrow lifecycle, trust scores (SynmercoScore 0-1000), on-chain reputation (ERC-8004 on 4 chains), marketplace, wallets, negotiation, disputes, referrals (0.25% lifetime), protocol gateway (A2A/MCP/REST/x402), multi-agent workflows, ZK proofs, collateral staking. **10 tools work free — no API key needed.** $1K Shield Insurance per escrow. 3.25% flat fee. 179K+ agents in ecosystem.
joelklabo avatar
Maximum Sats

joelklabo/maximumsats-mcp

Bitcoin & Lightning Network AI tools with native Lightning L402 micropayments.
joepangallo avatar
Agent Pay

joepangallo/agent-pay

Payment gateway for AI agents with tool discovery, provisioning, metering, and reliability tools.
junct-bot avatar
Aarna Mcp

junct-bot/aarna-mcp

Aarna - 34 tools for swap quotes, liquidity pools, and trading data