MCP endpoint
Point your MCP client at the following URL: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 thegentic entry to your claude_desktop_config.json:
claude_desktop_config.json
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 supplyhttps://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.

