Skip to content

MCP Setup

Ryvion exposes an MCP-compatible (Model Context Protocol) endpoint for agent frameworks like Claude Code, CrewAI, and LangGraph. Connect your agents to Ryvion tools directly.

Endpoint

https://api.ryvion.ai/mcp

Configuration

Add Ryvion to your MCP client configuration:

{
  "mcpServers": {
    "ryvion": {
      "url": "https://api.ryvion.ai/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Code

Add the above configuration to your Claude Code MCP settings. Once connected, Claude Code can use Ryvion tools directly in conversations.

Steps

  1. Open Claude Code settings
  2. Navigate to MCP server configuration
  3. Add the Ryvion server block shown above
  4. Replace YOUR_API_KEY with your Ryvion API key
  5. Restart Claude Code

Other MCP clients

Any MCP-compatible client can connect using the same configuration. The endpoint supports the standard MCP protocol over HTTP with SSE transport.

CrewAI

from crewai import Agent

agent = Agent(
    role="researcher",
    mcp_servers={
        "ryvion": {
            "url": "https://api.ryvion.ai/mcp",
            "headers": {"Authorization": "Bearer YOUR_API_KEY"}
        }
    }
)

LangGraph

Configure the MCP endpoint in your LangGraph agent's tool configuration using the same URL and authorization header.

Authentication

MCP uses the same API key as the REST API. Pass it in the Authorization: Bearer header. See Authentication.

Next steps