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. 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)
Claude Code has its own dedicated guide that covers both the MCP config file approach and the direct REST API fallback. See Claude Code guide.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 the docs connector is reachable. If the page errors, try again in 5 minutes as there may be a brief service hiccup.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 plan may not include the operation you’re trying to run. Some plans are read-only or lead-generation-focused, while audit-capable paid plans unlock writes. Check
GET /api/user/tier and any requiredTier field in the 403 response.429 rate limited mid-batch
429 rate limited mid-batch
See Authentication → Rate limits. Write limits and long-running audit synthesis are the most common ceilings 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. Use the async audit tool only when the project already has current document and interview analyses, or verify with getAuditAnalysis before re-triggering. Re-triggering an in-flight analysis wastes credits.
