> This page location: Docs > Reference > MCP Connectors > MCP Connectors Installation
> Full index for agents: https://www.semantius.com/llms.txt

# MCP Connectors Installation

> Connect ChatGPT, Claude, Claude Code, and other MCP clients to your Semantius platform.

- **URL**: https://www.semantius.com/docs/mcp-connectors/installation

---

Every Semantius data platform exposes two **remote MCP servers**: fully hosted, streamable HTTP endpoints you connect to directly. There's nothing to install locally. Pick the server that matches what you want the client to do, then point your MCP client at its URL. For background on what each server does, see the [MCP Connectors Overview](https://www.semantius.com/docs/mcp-connectors.md).

## Find Your Platform URLs

When you create a data platform, the admin dashboard shows the URLs to use. Open your platform on [app.semantius.com](https://app.semantius.com). The **Data Platform URLs** panel lists everything you need:

![Data Platform URLs panel in the Semantius admin dashboard, showing the Operations and Analytics MCP server URLs](https://www.semantius.com/_astro/platform-urls.CC4sZ4N1_z1nWu.webp)

Each platform gets its own subdomain. `myname` is replaced with the unique name of your platform. Copy the URLs straight from the dashboard rather than constructing them by hand.

## The Two MCP Servers

### Ops MCP

The Ops server is for **managing the platform** and working with records.

- Schema management: create, rename, and delete entities, fields, and relationships.
- Permissions: define roles and configure RBAC.
- CRUD on every entity: create, read, update, delete records.
- Search across entities.

Use this server when you want an agent to evolve the model or to interact with individual records.

### Analytics MCP

The Analytics server is for **querying and visualizing** data.

- Complex queries across multiple tables, with joins resolved through the semantic layer.
- Aggregations, filters, and time-series analysis grounded in the model's measures and dimensions.
- **MCP apps** that render results as interactive charts and grids directly in the chat: not static images, but live components the user can sort, filter, and drill into.

Use this server when you want an agent to answer analytical questions or build dashboards.

You can register both servers in the same client. The agent will pick whichever fits the request.

## Connect Your Client

### ChatGPT

1. In ChatGPT, open **Settings → Connectors → Add custom connector**.
2. Paste the server URL: `https://myname.semantius.ai/mcp` for Ops or `https://myname.semantius.io/mcp` for Analytics.
3. Authenticate when prompted. Semantius will open a sign-in flow and bind the connector to your user.
4. Save. The connector appears in the tools picker on any new chat.

Repeat for the second server if you want both.

### Claude (Desktop & Web)

1. Open **Settings → Connectors → Add custom connector**.
2. Paste the server URL.
3. Complete the sign-in flow when prompted.
4. Enable the connector for the workspaces that should see it.

### Claude Code

Add each server you want to use:

```bash
claude mcp add myname-ops --transport http \
  --url https://myname.semantius.ai/mcp

claude mcp add myname-analytics --transport http \
  --url https://myname.semantius.io/mcp
```

Or edit `~/.claude.json` directly:

```json
{
  "mcpServers": {
    "myname-ops": {
      "transport": "http",
      "url": "https://myname.semantius.ai/mcp"
    },
    "myname-analytics": {
      "transport": "http",
      "url": "https://myname.semantius.io/mcp"
    }
  }
}
```

Restart Claude Code, then run `/mcp` to confirm the servers are connected and complete the sign-in.

### Other MCP Clients

Any client that speaks the [Model Context Protocol](https://modelcontextprotocol.io) over HTTP works the same way: paste the server URL and follow the sign-in flow when the client first connects.

## Verify the Connection

- **Ops:** ask the client _"List the entities in my platform."_ If you get the schema back, ops is wired up.
- **Analytics:** ask _"Show total records per entity as a chart."_ A successful answer renders an interactive chart in the chat.

If the client reports a permission error, the issue is the role the connector signed in as. Your platform's RBAC is enforced on every call. Adjust the role in the admin dashboard, then reconnect.

## Next Steps

- **[Agent Skills Installation →](https://www.semantius.com/docs/agent-skills/installation.md)**: For coding agents, install the Semantius CLI and skills alongside these MCP connectors.
- **[Models Overview →](https://www.semantius.com/docs/models.md)**: Learn what the connectors are reading and writing.
- **[Templates →](https://www.semantius.com/docs/models/templates.md)**: Deploy a curated semantic model and start chatting with it through the MCP connectors.

---

## Related

- [MCP Connectors](https://www.semantius.com/docs/mcp-connectors.md)
- [Agent Skills](https://www.semantius.com/docs/agent-skills.md)
- [Docs home](https://www.semantius.com/docs.md)
- [Full index for agents](https://www.semantius.com/llms.txt)
