Documentation Index
Fetch the complete documentation index at: https://docs.auditynow.com/llms.txt
Use this file to discover all available pages before exploring further.
Requirements
- Cursor (recent build with MCP support, settings panel includes an “MCP” section)
- An Audity Personal Access Token (
aky_...), see Authentication
Setup
Configure the server
- Name:
Audity - URL:
https://docs.auditynow.com/mcp - Headers:
Authorization: Bearer aky_<your-token>
Bearer prefix.Save and reload
Cursor will discover the available tools automatically. You should see
listProjects, createProject, triggerAuditAnalysis, listMemories, and the rest in the tool palette.What you get
The MCP server exposes every endpoint from Audity’s OpenAPI spec as a Cursor tool. Tool names match theoperationId in the spec, e.g. getCurrentUser, listOpportunities, createCaptureNote.
Common prompts
Cursor-specific tips
- Use
@audityto scope the tool call. Without an explicit reference, Cursor may pick a different MCP server’s tool with a similar name. - Per-project MCP config. If you want different Audity tokens for different projects (e.g. testing vs production), use Cursor’s per-workspace MCP settings rather than the global one.
- Composer mode plays nicely with Audity. Multi-step workflows (“convert all leads above 70 from this week, then trigger analysis on each”) run cleanly in composer because Cursor stages the tool calls before executing.
Troubleshooting
Cursor doesn't see Audity tools after configuring
Cursor doesn't see Audity tools after configuring
Reload Cursor (Cmd+Shift+P → “Reload Window”). MCP servers are discovered at startup; runtime config changes need a reload.
Every call returns 401 PAT_MALFORMED
Every call returns 401 PAT_MALFORMED
Check the headers field. It should be exactly
Authorization: Bearer aky_<token>. If you have an extra Bearer (i.e., Authorization: Bearer Bearer aky_...), Cursor sends the doubled prefix and Audity’s middleware rejects it. Remove one.Every call returns 403 PAT_SCOPE_INSUFFICIENT
Every call returns 403 PAT_SCOPE_INSUFFICIENT
Token lacks
write scope. Generate a new one in Settings → API Tokens with both read and write checked, then update Cursor’s MCP headers.`@audity` doesn't autocomplete
`@audity` doesn't autocomplete
The MCP server probably isn’t connected. Check Cursor Settings → MCP, Audity should show a green dot. Red means a connection error; check the URL and headers.
429 rate limited
429 rate limited
See Authentication → Rate limits. Cursor’s composer can fan out calls fast; for batch operations consider serializing or adding
setTimeout-style delays.What’s next
- Run a full audit workflow →
- Working with Nucleus →
- API Quickstart (curl) → for non-MCP integrations