Generic MCP server for Logggai (multi-IDE, Cursor wrapper, extensible)
npm install logggai-mcpThe Logggai MCP Server lets you integrate Logggai with Cursor (and other MCP agents) locally (stdio), providing a native and secure experience.
---
/api-keyscurl -X POST https://logggai.run/api/auth/apikey -H "Authorization: Bearer YOUR_UNKEY_API_KEY"access_token from the response.cursor/mcp.json:json
{
"mcpServers": {
"logggai": {
"command": "node",
"args": ["/path/to/logggai-mcp/index.js"],
"env": {
"API_KEY": "your_jwt_mcp_token_here"
}
}
}
}
`$3
- Prerequisite: Node.js and npm installed
- The MCP server will be launched automatically by Cursor via npx logggai-mcp (no need to run it manually)
- If needed, you can run it manually:
`bash
npx logggai-mcp
`$3
- The server uses JWT MCP tokens generated from Unkey API keys
- Process: Unkey API Key → JWT MCP Token (via /api/auth/apikey) → API_KEY env var
- JWT tokens have specific claims:
- Audience: logggai-mcp
- Issuer: logggai
- Scopes: ["agent"]`---
Made with ❤️ by Thibault Souris & EDEN