Skip to main content
Gentic exposes a Model Context Protocol (MCP) server that makes your entire project and issue workflow available to any MCP-compatible AI assistant. Instead of switching between your AI tool and the Gentic dashboard, you can ask your assistant to create a bug report, update a project, or queue an agent run — and it will call Gentic’s API on your behalf in real time.

MCP endpoint

Point your MCP client at the following URL:
https://gentic.chat/mcp
This single endpoint supports all 12 Gentic tools, covering account inspection, project management, and the full issue lifecycle.
The MCP server uses OAuth 2.0 for authentication. The first time your client connects, it will redirect you to gentic.chat so you can authorize access with your Gentic account. No API keys or manual token setup is required.

Connect Claude Desktop

Claude Desktop reads MCP server configuration from a JSON file. Add the gentic entry to your claude_desktop_config.json:
claude_desktop_config.json
{
  "mcpServers": {
    "gentic": {
      "url": "https://gentic.chat/mcp"
    }
  }
}
After saving the file and restarting Claude Desktop, Claude will prompt you to authorize the connection through your Gentic account. Once authorized, all Gentic tools are available in your conversation.

Connect other MCP clients

Any MCP-compatible client that accepts a server URL — including Cursor, Continue, and custom MCP hosts — can connect using the same endpoint. Consult your client’s documentation for where to add a new MCP server entry, then supply https://gentic.chat/mcp as the URL.

What you can do after connecting

Once connected, your AI assistant can:

Manage projects

List, create, update, and delete Gentic projects linked to your GitHub repositories.

Create and update issues

Create bug reports, feature requests, and ideas with titles and agent instructions.

Control issue workflow

Move issues through every workflow status, from draft all the way to completed.

Trigger agent runs

Transition an issue from draft to todo to queue a background AI coding agent run immediately.

Example: create a bug report and queue an agent run

You do not need to open the Gentic dashboard at all. Ask your assistant something like:
“Create a bug issue for the login project titled ‘Fix null pointer in auth’ with the prompt ‘The login endpoint throws NPE when email is missing — add input validation.’ Then move it to todo.”
Your assistant will call create_issue to create the issue in draft state, then call update_issue_status to move it to todo, which queues a background agent run automatically.
Start issues in draft status while you refine the title and prompt. Move to todo only when you are ready for the agent to begin work — that transition is what triggers the run.

Available tools

See the Tools reference for a complete list of all 12 MCP tools, their parameters, and example usage.