Skip to content

How to connect an AI agent to rConfig V8 over MCP

How to connect an AI agent to rConfig V8 over MCP

Section titled “How to connect an AI agent to rConfig V8 over MCP”

After reading this page, you can generate an MCP access token and connect an external AI agent (Claude Code, Cursor, Gemini CLI, or any other MCP-compatible client) directly to your rConfig instance.

Use this page when you want an AI coding agent or copilot to query your rConfig inventory, configs, and compliance status directly, instead of copying data into the agent by hand. This is the live, always-on counterpart to the downloadable Skill: connect here for an ongoing session; download a Skill when the agent needs a portable, offline-installable package instead.

  • Access to the AI Center in rConfig
  • An MCP-compatible agent or client (Claude Code, Cursor, Gemini CLI, or another MCP client)

The MCP endpoint is read-only end to end. Every tool it exposes reads data, none of them write to a device, a config, or rConfig’s own records.

SettingValue
TransportHTTP / SSE (Streamable)
AuthenticationSanctum API token (Bearer)
ScopeRead-only
ToolDescription
get_devicesList devices in inventory
get_deviceGet details for a single device
get_latest_configGet a device’s most recent configuration
get_config_historyGet a device’s configuration version history
get_config_diffGet the diff between two configuration versions
search_configsSearch across stored configurations
get_compliance_statusGet a device’s policy compliance status
  1. Click AI Center in the left sidebar.
  2. Select the MCP Server tab.

The endpoint URL is shown at the top with a copy button. If you don’t have a token yet, a banner reads: “The MCP endpoint is live, but you don’t have an MCP access token yet…” with a Create MCP Token button.

rConfig V8 MCP Server tab showing the live endpoint URL with a copy button, the transport, authentication, and scope details, and the MCP Access Tokens section below with an existing token

Click New MCP Token (or Create MCP Token from the banner). In the Create MCP Token dialog, give the token a name and click Generate Token.

In the Connect Your Agent section, select the tab for your client and follow its snippet.

Claude Code connects to remote MCP over HTTP natively. Claude Desktop has no native remote MCP support yet, so it goes through the mcp-remote bridge (requires Node.js/npx).

Claude Code (terminal):

Terminal window
claude mcp add --transport http rconfig <endpoint> --header "Authorization: Bearer YOUR_MCP_TOKEN"

Claude Desktop (claude_desktop_config.json):

{
"mcpServers": {
"rconfig": {
"command": "npx",
"args": [
"-y", "mcp-remote", "<endpoint>",
"--header", "Authorization: Bearer YOUR_MCP_TOKEN"
]
}
}
}

Replace <endpoint> with the URL shown at the top of the MCP Server tab, and YOUR_MCP_TOKEN with the token you generated.

rConfig V8 MCP Server tab Connect Your Agent section with per-client tabs for Claude, Cursor, Gemini CLI, and Other / Self-hosted, showing the Claude Code and Claude Desktop connection snippets

Use the Verify & Try It section on the same page for example prompts mapped to each tool, to confirm your agent can reach rConfig before relying on it for real work.