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
- Claude account on Pro, Max, Team, or Enterprise (Custom Connectors require a paid plan)
- An Audity Personal Access Token (
aky_...), see Authentication
Claude Desktop / claude.ai
Configure auth
The connector needs
Authorization: Bearer aky_<your-token> on every request to the Audity backend.- If Claude shows an “Authorization header” or “API key” field on the connector setup screen: paste
Bearer aky_<your-token>(the full string includingBearer, since Claude does not auto-prefix in this flow). - If Claude redirects you through an OAuth approval first: approve the redirect, Mintlify is the OAuth provider for the docs surface. After approval, you’ll still get a prompt for your Audity API key. Paste your
aky_<your-token>(this time withoutBearer, the connector wraps it).
Claude Code (CLI)
In your project’s.claude/mcp_servers.json (or via claude mcp add):
claude mcp reload. The Audity tools appear in your tool palette; reference them as mcp__audity__<toolName> (Claude Code auto-prefixes with the server name).
What you get
The connector exposes Audity’s full agent surface as Claude tools, 28 operations across projects, leads, Nucleus, and account. Tool names match theoperationId in the OpenAPI spec:
getCurrentUser,getCurrentTier,getCreditslistProjects,createProject,getProject,patchProjecttriggerAuditAnalysis,getAuditAnalysislistOpportunities,getDeliverableslistLeads,getLead,convertLeadlistMemories,createMemory,deleteMemorylistCaptures,createCaptureNote,getCapture,reprocessCapture,deleteCapturelistContacts,createContact,updateContact,deleteContactlistInsights,getSuggestions
Common prompts
Tips for agent prompts
- Tell Claude to confirm before spending credits. Audit analysis costs credits, lead conversion costs 1,000 each. Without explicit confirmation in the prompt, Claude will sometimes fire off a batch you didn’t intend.
- Ask Claude to cite IDs. When summarizing opportunities or memories, have Claude include the
idfield in its output. That way you can drill into a specific item and verify Claude isn’t confabulating. - Use the
confidencefield on memories. Tell Claude to flag any memory under 0.8 confidence as a hypothesis rather than a fact. Detected patterns are AI-generated; treat them accordingly.
Troubleshooting
Claude says it can't find Audity tools
Claude says it can't find Audity tools
Check the connector status in Settings → Connectors. If it’s red, re-authorize. If your PAT was revoked or expired, generate a new one and update the connector.
Connector hangs on OAuth approval
Connector hangs on OAuth approval
Open
https://docs.auditynow.com/authed/mcp/oauth/token in a browser to confirm Mintlify is reachable. If the page errors, try again in 5 minutes, Mintlify occasionally has brief OAuth provider hiccups.Every call returns 401 PAT_MALFORMED
Every call returns 401 PAT_MALFORMED
Token format is wrong. Most common cause: the connector double-prefixed
Bearer Bearer aky_.... Edit the connector auth and remove one Bearer , or paste only aky_... (depends on which UX field you’re filling, see Step 3 above).Every call returns 403 PAT_SCOPE_INSUFFICIENT
Every call returns 403 PAT_SCOPE_INSUFFICIENT
Token lacks
write scope. Generate a new token with both read and write scopes, then update the connector.403 errors on every call but token is fine
403 errors on every call but token is fine
Your tier doesn’t include agent access. Solo / Scout are read-only, Starter or higher unlocks writes. Check
GET /api/user/tier.429 rate limited mid-batch
429 rate limited mid-batch
See Authentication → Rate limits. The 5-per-minute limit on
triggerAuditAnalysis is the most common ceiling for batch workflows.Audit analysis times out
Audit analysis times out
triggerAuditAnalysis runs synchronously for 60–300 seconds. If Claude reports a timeout, the call may have succeeded server-side. Verify with getAuditAnalysis before re-triggering, re-triggering an in-flight analysis wastes credits.