Skip to main content
The Ceramic MCP Server enables AI systems to search the web through the Model Context Protocol.

Setup

Install in Cursor

Click to install the Ceramic MCP server directly in Cursor.
Or add manually to your ~/.cursor/mcp.json:
{
  "mcpServers": {
    "ceramic": {
      "url": "https://mcp.ceramic.ai/mcp"
    }
  }
}
Setup for additional clients can be found below.
Note: MCP server support requires a ChatGPT Plus, Pro, or Team plan.From the ChatGPT desktop app or web browser:
  1. Go to Settings → Apps
  2. Click Advanced Settings
  3. Enable Developer Mode
  4. Click Create App
  5. Paste the MCP server URL: https://mcp.ceramic.ai/mcp
  6. Click Add
Add to your ~/.gemini/settings.json:
{
  "mcpServers": {
    "ceramic": {
      "httpUrl": "https://mcp.ceramic.ai/mcp"
    }
  }
}
  1. In the Agent panel on the right side, click the three-dot menu
  2. Select MCP Servers
  3. Select Manage MCP Servers
  4. Click View Raw config
  5. Add the following:
{
  "mcpServers": {
    "ceramic": {
      "serverUrl": "https://mcp.ceramic.ai/mcp"
    }
  }
}
Add to your ~/.kiro/settings/mcp.json:
{
  "mcpServers": {
    "ceramic": {
      "url": "https://mcp.ceramic.ai/mcp"
    }
  }
}
Add to your opencode.json:
{
  "mcp": {
    "ceramic": {
      "type": "remote",
      "url": "https://mcp.ceramic.ai/mcp",
      "enabled": true
    }
  }
}
  1. Go to Settings → Agents → MCP Servers
  2. Click +Add
  3. Add the following:
{
  "ceramic": {
    "serverUrl": "https://mcp.ceramic.ai/mcp"
  }
}
Add to your ~/.codeium/windsurf/mcp_config.json:
{
  "mcpServers": {
    "ceramic": {
      "serverUrl": "https://mcp.ceramic.ai/mcp"
    }
  }
}
Open your Zed settings (Zed → Settings → Open Settings JSON) and add:
{
  "context_servers": {
    "ceramic": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.ceramic.ai/mcp"]
    }
  }
}

Available Tools

Searches the web and returns a ranked list of results. Agents get better results with specific terms than with conversational phrasing. See search best practices for more guidance.