⭐ Free Forever · MCP v2.0.0 (43 tools) · omdaa.com/mcp · built from
content/Authentication
Omdaa accepts a JWT after login or an API Key. Preferred for integrations and MCP:
Authorization: Bearer <JWT_OR_API_KEY>
Legacy compatibility only:
X-API-Key: <API_KEY>
Create an API Key
- Register at omdaa.com
- Create a key from the API Keys dashboard
- The key is shown once — save it immediately
curl -X POST https://omdaa.com/api/v1/api-keys/create \
-H "Authorization: Bearer YOUR_JWT" \
-H "Content-Type: application/json" \
-d '{"name":"My Key","permissions":["*"]}'
Default: permissions: ["*"] — see permissions guide.
MCP
{
"mcpServers": {
"omdaa": {
"type": "http",
"url": "https://omdaa.com/api/v1/mcp",
"headers": {
"Authorization": "Bearer ${env:OMDAA_API_KEY}"
}
}
}
}
⚠️ Do not put the key in the URL (?key= is deprecated).
Links
content/2026.07.12 · 2026-07-15