Integrations » Connecting to the nuzur MCP Server

Connecting to the nuzur MCP Server


What is the nuzur MCP Server?

Smithery MCP Server

The nuzur MCP (Model Context Protocol) server gives AI assistants like Claude a live, structured connection to your nuzur projects. Instead of describing your data model in a chat window, Claude can read your entities, fields, and relationships directly — and create change requests on your behalf.

MCP is an open standard, and nuzur's server is compatible with any MCP-enabled AI client.


Setup & Connection

One-Click Installation

If you use Cursor or VS Code, you can install the nuzur MCP server directly with a single click:


Claude Desktop

To connect nuzur to the Claude Desktop application, configure the connector in the UI or update your configuration file manually:

  1. Open Claude Desktop and go to Settings (or Customize)
  2. Navigate to the Connectors section
  3. Click Add custom connector
  4. Set the name to nuzur and paste the following Streamable HTTP URL:
    https://ccmcp.nuzur.com
    

Method B: Manual Configuration

Alternatively, you can open your claude_desktop_config.json file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

And add the nuzur configuration to the mcpServers block:

{
  "mcpServers": {
    "nuzur": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://ccmcp.nuzur.com"
      ]
    }
  }
}

Claude Code (CLI)

For Claude Code CLI, run the following command in your terminal:

claude mcp add --transport http nuzur https://ccmcp.nuzur.com

Authentication

Regardless of the installation method, on first connection, a browser window will open prompting you to sign in and authenticate with your nuzur account. Once approved, the client is granted access to inspect authorized database structures.


What Claude can do with the MCP connection

Once connected, Claude can:

  • Read your full project structure — every entity, field, and relationship in your published model
  • Query existing records — look up data to find references, check formats, and keep entries consistent
  • Create change requests — propose new or updated records pre-filled with the correct values, ready for human review in nuzur
  • And more, you will be able to see the full list of tools once added

Claude never writes directly to your database. All changes go through nuzur's change request workflow, where a team member must review and approve before anything is committed.


Reviewing change requests

After Claude creates a change request, it will appear in the review queue in your nuzur project. Anyone with the appropriate permissions can open it, verify the details, and approve or reject it.

See Managing change requests for more details on the review workflow.


Requirements

  • A nuzur account (free plan supported)
  • A published version of your project's data model
  • An MCP-compatible AI client (e.g. Claude)

Next steps