{
  "name": "Venum",
  "description": "Solana execution infrastructure for coding agents, trading agents, and developers. Venum exposes agent-friendly MCP, installable skills, and a public execution API for prices, quotes, swap builds, submission, and transaction monitoring.",
  "provider": {
    "organization": "Venum",
    "url": "https://www.venum.dev"
  },
  "url": "https://api.venum.dev",
  "version": "1.0.0",
  "documentationUrl": "https://docs.venum.dev/guide/venum-mcp",
  "defaultInputModes": [
    "text",
    "application/json"
  ],
  "defaultOutputModes": [
    "text",
    "application/json"
  ],
  "capabilities": {
    "streaming": true,
    "pushNotifications": false
  },
  "authentication": {
    "schemes": [
      {
        "type": "apiKey",
        "description": "Most Venum agent workflows require a Venum API key.",
        "instructionsUrl": "https://www.venum.dev"
      }
    ]
  },
  "skills": [
    {
      "id": "health",
      "name": "Health Checks",
      "description": "Check Venum API and execution surface health.",
      "tags": [
        "health",
        "observability"
      ],
      "examples": [
        "Check whether the Venum execution surface is healthy.",
        "Verify API health before requesting quotes or swaps."
      ]
    },
    {
      "id": "prices",
      "name": "Prices And Market Data",
      "description": "Fetch one-shot prices, monitor streams, and inspect pools and tokens.",
      "tags": [
        "prices",
        "streaming",
        "market-data"
      ],
      "examples": [
        "Get current prices for SOL, JUP, and BONK.",
        "Monitor live price updates for a Solana token set."
      ]
    },
    {
      "id": "quote",
      "name": "Swap Quotes",
      "description": "Get route-aware swap quotes and compare execution options.",
      "tags": [
        "quotes",
        "routing",
        "swap"
      ],
      "examples": [
        "Quote a SOL to USDC swap.",
        "Compare routes and slippage before building a swap."
      ]
    },
    {
      "id": "swap-build",
      "name": "Unsigned Swap Build",
      "description": "Build unsigned Solana swap transactions for inspection, persistence, and external signing.",
      "tags": [
        "swap",
        "transaction-build",
        "unsigned"
      ],
      "examples": [
        "Build an unsigned SOL to USDC swap transaction.",
        "Prepare a swap transaction for external wallet signing."
      ]
    },
    {
      "id": "swap-submit",
      "name": "Signed Swap Submission",
      "description": "Submit signed swap transactions and check resulting transaction state.",
      "tags": [
        "swap",
        "submission",
        "tx-status"
      ],
      "examples": [
        "Submit a signed swap transaction.",
        "Check the status of a recent Venum transaction."
      ]
    },
    {
      "id": "agent-workflows",
      "name": "Reusable Agent Workflows",
      "description": "Use installable Venum Skills for common price, quote, swap, and transaction-monitoring workflows.",
      "tags": [
        "skills",
        "agents",
        "workflows"
      ],
      "examples": [
        "Install Venum Skills for Claude, Codex, or OpenCode.",
        "Follow a reusable workflow from prices to quotes to swap submission."
      ]
    }
  ]
}
