Hosted read-only server that connects Claude, Cursor, Cline, or any Streamable HTTP MCP client directly to your Auralogs production logs. Exposes seven tools: search logs with full-text queries, filter by level and time range, inspect individual errors with stack traces and metadata, and review AI-generated analyses complete with diagnoses and suggested fixes. Auth is via project-scoped bearer tokens that you generate from the Auralogs dashboard. Rate limited to 60 requests per minute. Reach for this when you want your agent to answer "what's broken in production?" without leaving the editor or manually copying stack traces into chat.
Hosted, read-only MCP server for Auralogs, the logging platform built for AI-assisted teams. Connect Claude Code, Claude Desktop, Cursor, Codex, Cline, or any Streamable HTTP MCP client to your production logs, then ask your agent "what's broken in production right now?" instead of copy-pasting stack traces.
https://mcp.auralogs.ai/mcp (Streamable HTTP)Authorization: Bearer aura_read_... (project-scoped read key)| Tool | Description |
|---|---|
list_projects | List projects accessible to the current read key |
get_project | Get a project by id |
list_logs | List logs, filtered by level and time range |
search_logs | Full-text search across log messages |
get_log | Get a single log with full context (stack, metadata) |
list_analyses | List AI analyses, filtered by severity and type |
get_analysis | Get one analysis (diagnosis, suggested fix, PR link) |
Keys look like aura_read_..., are scoped to one project, and can be revoked instantly from the dashboard.
claude mcp add --transport http auralogs https://mcp.auralogs.ai/mcp \
--header "Authorization: Bearer aura_read_YOUR_KEY"
Add to claude_desktop_config.json:
{
"mcpServers": {
"auralogs": {
"transport": {
"type": "http",
"url": "https://mcp.auralogs.ai/mcp",
"headers": {
"Authorization": "Bearer aura_read_YOUR_KEY"
}
}
}
}
}
Click the Add to Cursor badge above, or add to .cursor/mcp.json:
{
"mcpServers": {
"auralogs": {
"url": "https://mcp.auralogs.ai/mcp",
"headers": {
"Authorization": "Bearer aura_read_YOUR_KEY"
}
}
}
}
Add via the Remote Servers tab, or in cline_mcp_settings.json:
{
"mcpServers": {
"auralogs": {
"url": "https://mcp.auralogs.ai/mcp",
"headers": {
"Authorization": "Bearer aura_read_YOUR_KEY"
}
}
}
}
See auralogs-codex for the Codex plugin, or use any standard remote MCP configuration.
The server speaks standard MCP over Streamable HTTP with bearer auth. Smoke-test with curl:
curl -X POST https://mcp.auralogs.ai/mcp \
-H "Authorization: Bearer aura_read_YOUR_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"0"}}}'
A 200 with result.serverInfo.name = "auralogs" confirms auth and transport.
Once connected, ask your agent:
401 on the next request.Full documentation: docs.auralogs.ai/read-api
This repo holds the public metadata for the hosted Auralogs MCP server: the MCP Registry server.json, install instructions, and listing assets. The server itself is a hosted service; there is nothing to install from here.
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp
io.github.sarahpark/google-search-console