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
- Open Cursor → Settings → MCP
- Click Add new global MCP server
- Paste the config JSON shown → Save
- Click the refresh icon next to jasma
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": {}
}'