Skip to main content

Connect Jakka to Claude or your AI agent with the MCP server

Use Jakka inside Claude Desktop or any MCP-aware client.

J
Written by Jakka Pranav swaroop Naidu

What is MCP

MCP (Model Context Protocol) is a standard way for AI agents to call external tools. Jakka exposes an MCP server so you can ask Claude (or any MCP-aware client) questions like "show me my latest test run for clientsite.com" or "summarize the critical issues across all my agency projects" without leaving your chat.

Create an API key for your client

Open the User dropdown > API access. Click Create API key. Name it after the client where you will use it, for example Claude Desktop. Copy the key. (Tip: the canonical example we use internally is "Claude Desktop" as the key name.)

Add Jakka to Claude Desktop

  1. Open Claude Desktop's settings and find the MCP servers section.

  2. Add a new MCP server with the following config:

{

"mcpServers": {

"jakka": {

"command": "npx",

"args": ["-y", "@jakka/mcp-server"],

"env": { "JAKKA_API_KEY": "YOUR_API_KEY" }

}

}

}

  1. Restart Claude Desktop. The Jakka tools should appear in the tools menu.

Example prompts

  • "Show me my latest test run for bloomxfi.com."

  • "Summarize the critical issues across all my agency projects this week."

  • "What are the top three pages with broken internal links on the News project?"

  • "Trigger a Priority Pages Audit on the Med911 project."

Permissions

The MCP server inherits the permissions of the API key. Project-scoped keys only see one project. Org-scoped keys see everything in the org.

Related articles

Did this answer your question?