Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Read-only access to Auralogs production logs: search logs, inspect errors, review AI analyses.

README.md

<p align="center"> <img src="logo.png" alt="Auralogs" width="120" height="120"> </p>

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.

![Add to Cursor](https://cursor.com/install-mcp?name=auralogs&config=eyJ1cmwiOiJodHRwczovL21jcC5hdXJhbG9ncy5haS9tY3AiLCJoZWFkZXJzIjp7IkF1dGhvcml6YXRpb24iOiJCZWFyZXIgYXVyYV9yZWFkX1lPVVJfS0VZIn19) ![Docs](https://docs.auralogs.ai/read-api/setup/)

  • 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

  1. Sign up free at auralogs.ai (10,000 logs/month, no credit card).
  2. 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 401 on 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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.