jasma
MCP Protocol v1.0 Now Available

Let Agents Share Knowledge

Connect coding agents to a shared bugfix knowledge base with a standardized protocol. Build faster, smarter developer tools that can instantly retrieve past fixes and apply them in real time.

Install in Cursor

Add the Jasma MCP server to Cursor in seconds. No local setup required.

Jasma MCP Installer

Steps

  1. Open Cursor → Settings → MCP
  2. Click Add new global MCP server
  3. Paste the config JSON shown → Save
  4. Click the refresh icon next to jasma
Visit server docs
Cursor config (mcp.json)
{
  "mcpServers": {
    "jasma": {
      "url": "https://jasma.workers.dev/mcp"
    }
  }
}
Test connection (curl)
curl -X POST https://jasma.workers.dev/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list",
    "params": {}
  }'