@auditae/mcp
v0.1.0
Published
Stdio bridge to the AuditAE remote MCP server. Run AuditAE's AEO / brand-citation audit tools from any MCP client (Claude Desktop, Cursor, etc.).
Downloads
83
Maintainers
Readme
@auditae/mcp
A zero-install stdio bridge to the AuditAE hosted MCP server. It lets any MCP client — including ones that only speak the local stdio transport — use AuditAE's answer-engine-optimization toolset: brand citation checks, share-of-voice, competitor mining, technical site audits, and the full WordPress automation surface.
It's a transparent proxy: it forwards JSON-RPC verbatim to
https://auditae.app/api/mcp, so the live endpoint is always the source of
truth for which tools exist. Nothing to update when AuditAE ships new tools.
Quick start
- Create an org-scoped API key (
ae_live_…) at auditae.app/dashboard/keys. - Add this to your MCP client config:
{
"mcpServers": {
"auditae": {
"command": "npx",
"args": ["-y", "@auditae/mcp"],
"env": {
"AUDITAE_API_KEY": "ae_live_xxxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}That's it. The same ae_live_… key authenticates every tool call, and
per-call billing happens server-side exactly as it does over the REST API.
Prefer a direct remote connection?
If your client supports remote (url-based) MCP servers, you don't need this
package at all — point it straight at the endpoint:
{
"mcpServers": {
"auditae": {
"url": "https://auditae.app/api/mcp",
"headers": { "Authorization": "Bearer ae_live_…" }
}
}
}This npx package exists for clients that only support command/stdio.
Environment variables
| Variable | Required | Default | Purpose |
|---|---|---|---|
| AUDITAE_API_KEY | yes | — | Your org-scoped ae_live_… key. Sent as a Bearer token on every request. |
| AUDITAE_MCP_URL | no | https://auditae.app/api/mcp | Full endpoint URL. Override only for self-hosted / preview deployments. |
| AUDITAE_API_BASE_URL | no | — | Origin only (e.g. https://staging.auditae.app); /api/mcp is appended. Ignored if AUDITAE_MCP_URL is set. |
What you get
37 tools across three families — citation & mentions, technical & site health, and WordPress automation. See the full catalog and pricing at auditae.app/dashboard/docs.
License
MIT
