Skip to main content

Overview

You can easily create an agent using the Rippletide Trust Platform and expose it as an MCP server, ready to be plugged into any MCP-compatible agent or client.

Step 1: Build your Agent

Go to the Rippletide Builder and define your agent’s:
  • Knowledge: the data and context your agent can access
  • Processes: the workflows and actions it can perform
  • Guardrails: the safety rules and constraints it must follow

Step 2: Visualize and Test

Navigate to the Knowledge tab to visualize your agent’s context graph and test it interactively before going live.

Step 3: Add to your Agent

Go to the Launch page. You will see MCP Tools and the exposed tools for your agent. Copy the configuration for your favorite MCP-compatible client:
Add the following to your claude_desktop_config.json file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "rippletide-kg": {
      "type": "http",
      "url": "https://mcp.rippletide.com/mcp?agentId=<your-agent-id>"
    }
  }
}
Run the following command in your terminal:
claude mcp add rippletide-kg --transport http "https://mcp.rippletide.com/mcp?agentId=<your-agent-id>"
Or add it to your .claude/settings.json:
{
  "mcpServers": {
    "rippletide-kg": {
      "type": "http",
      "url": "https://mcp.rippletide.com/mcp?agentId=<your-agent-id>"
    }
  }
}
Add the following to your .cursor/mcp.json file at the root of your project (or globally in ~/.cursor/mcp.json):
{
  "mcpServers": {
    "rippletide-kg": {
      "type": "url",
      "url": "https://mcp.rippletide.com/mcp?agentId=<your-agent-id>"
    }
  }
}
Add the following to your ~/.codeium/windsurf/mcp_config.json:
{
  "mcpServers": {
    "rippletide-kg": {
      "type": "url",
      "url": "https://mcp.rippletide.com/mcp?agentId=<your-agent-id>"
    }
  }
}
Add the following to your .vscode/mcp.json file at the root of your project:
{
  "servers": {
    "rippletide-kg": {
      "type": "http",
      "url": "https://mcp.rippletide.com/mcp?agentId=<your-agent-id>"
    }
  }
}
Or add it to your VS Code settings.json under mcp:
{
  "mcp": {
    "servers": {
      "rippletide-kg": {
        "type": "http",
        "url": "https://mcp.rippletide.com/mcp?agentId=<your-agent-id>"
      }
    }
  }
}
Use any MCP-compatible SDK or framework. Point your MCP client to the following URL:
https://mcp.rippletide.com/mcp?agentId=<your-agent-id>
The server supports Streamable HTTP transport.
That’s it. In under 2 minutes you’ve created an agent on Rippletide, tested it, and integrated it into your agent using MCP.