AI-Native

Your AI assistant knows your errors

Wevitos ships with an MCP server that gives AI coding assistants direct access to your production errors — no copy-pasting, no context switching.

The Model Context Protocol

MCP is an open standard that lets AI assistants connect to external tools and data sources. Wevitos implements an MCP server so your AI can read, search, and manage your errors directly.

Works with

Any MCP-compatible assistant

Claude Code, Cursor, Windsurf, and any tool that supports MCP can connect to Wevitos. Your AI gets full context on every error — stacktraces, event counts, environment, timestamps — to help you fix bugs faster.

list_errorsList and filter all errors in a project
get_errorFull detail with stacktrace and metadata
list_eventsBrowse individual events within an error
event_breakdownPattern and domain breakdown
resolve_errorMark errors as resolved from your editor
search_errorsFull-text search across all errors
Claude Code
> What errors are happening in production?

Using tool: list_errors

Found 3 open errors in my-api:

1. ValueError in auth.py:42
   12,847 events — first seen 2h ago

2. ConnectionError in db.py:89
   3,291 events — first seen 1d ago

3. TimeoutError in api.py:156
   891 events — regression
Claude Code
> Fix the ValueError in auth.py

Using tool: get_error
Using tool: Read auth.py
Using tool: Edit auth.py:42

Fixed. The token validation was using
int() on a hex string. Changed to
int(token, 16).

Using tool: resolve_error
Error marked as resolved.

Connect in 30 seconds

No installation required. Just add the config and your AI assistant connects automatically.

Add to your config

Add the Wevitos MCP server to your project's .mcp.json or your AI tool's settings.

uvx wevitos-mcp

Set your API key

The MCP server uses the same project API key from your Wevitos dashboard.

WEVITOS_API_KEY=wvt_...

Ask your AI

Your AI assistant now has full access to your errors. Just ask it to check or fix them.

"What errors are in prod?"
.mcp.json
{
  "mcpServers": {
    "wevitos": {
      "command": "uvx",
      "args": ["wevitos-mcp"],
      "env": {
        "WEVITOS_API_KEY": "wvt_your_api_key"
      }
    }
  }
}

Let your AI fix your bugs

Set up Wevitos + MCP and never manually copy-paste a stacktrace again.