Skip to main content

MCP Integration

Radium supports the Model Context Protocol (MCP) for connecting to external MCP servers and using their tools and prompts. This enables Radium to extend its capabilities through external services.

Quick Start​

  1. Configure an MCP server in .radium/mcp-servers.toml:
[[servers]]
name = "my-server"
transport = "stdio"
command = "mcp-server"
args = ["--config", "config.json"]
  1. List available tools:
rad mcp tools
  1. Use MCP tools in agents - MCP tools are automatically available to agents during execution.

Features​

  • Tool Discovery: Automatically discover tools from MCP servers
  • Slash Commands: MCP prompts are available as slash commands in chat
  • Rich Content: Support for text, images, and audio content
  • OAuth Authentication: Secure authentication for remote servers
  • Multiple Transports: Support for stdio, SSE, and HTTP transports

Documentation​

Example Guides​

Examples​

See the examples directory for working configuration examples.

References​