streamable-httpMITupdated 3mo ago
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.
What can you do with Auralogs?
Auralogs MCP Server
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.
- Endpoint:
https://mcp.auralogs.ai/mcp(Streamable HTTP) - Auth:
Authorization: Bearer aura_read_...(project-scoped read key) - Read-only by design: no write tools exist. Agents can look, not touch.
- Rate limit: 60 requests/minute per key
Tools
| 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) |
Get a key
- Sign up free at auralogs.ai (10,000 logs/month, no credit card).
- Create a project and copy the MCP/API read key from the startup modal, or create one later under Settings → API & MCP keys → Read keys.
Keys look like aura_read_..., are scoped to one project, and can be revoked instantly from the dashboard.
Connect
Claude Code
claude mcp add --transport http auralogs https://mcp.auralogs.ai/mcp \
--header "Authorization: Bearer aura_read_YOUR_KEY"
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"auralogs": {
"transport": {
"type": "http",
"url": "https://mcp.auralogs.ai/mcp",
"headers": {
"Authorization": "Bearer aura_read_YOUR_KEY"
}
}
}
}
}
Cursor
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"
}
}
}
}
Cline
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"
}
}
}
}
Codex
See auralogs-codex for the Codex plugin, or use any standard remote MCP configuration.
Anything else
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.
Try it
Once connected, ask your agent:
- "What's broken in production right now?"
- "Pull the last 20 error logs and look for patterns."
- "Show me the most recent high-severity analysis."
Security
- Read keys are read-only and scoped to a single project. The MCP surface exposes no write operations.
- Revocation is immediate: revoked keys get
401on the next request. - Keys are stored hashed (SHA-256); the plaintext is shown once at creation.
Full documentation: docs.auralogs.ai/read-api
About this repo
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.
Install
Add Auralogs to your client. Pick the one you use.
claude mcp add --transport http auralogs https://mcp.auralogs.ai/mcpcodex mcp add auralogs --url https://mcp.auralogs.ai/mcp{
"mcpServers": {
"auralogs": {
"url": "https://mcp.auralogs.ai/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"auralogs": {
"type": "http",
"url": "https://mcp.auralogs.ai/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"auralogs": {
"url": "https://mcp.auralogs.ai/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"auralogs": {
"serverUrl": "https://mcp.auralogs.ai/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
7 tools
Auralogs exposes 7 tools to a connected agent.
- 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)
Score
75 / 100
Good
- Documentation25/25
- Maintenance16/25
- Trust16/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 83 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 7 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Jun 10, 2026 |