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
- Open Claude Code settings
- Navigate to MCP server configuration
- Add the Ryvion server block shown above
- Replace
YOUR_API_KEYwith your Ryvion API key - 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
- Available Tools -- see what tools are exposed via MCP
- Chat Completions -- use the REST/OpenAI-compatible API for inference
- Knowledge Bases -- search your documents via MCP