Read-only access to Auralogs production logs: search logs, inspect errors, review AI analyses.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ai-auralogs-auralogs": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Read-only access to Auralogs production logs: search logs, inspect errors, review AI analyses.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Apify MCP Server
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
MCP proxy that compresses prose fields (tool descriptions, etc.) using caveman rules. Same accuracy, fewer context tokens.
MCP Security Weekly
Get CVE alerts and security updates for ai.auralogs/auralogs and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 t