This is the agent path: install one connector, paste one token, run real workflows from your AI assistant of choice. If you’d rather call the API directly with curl or your own HTTP client, see API Quickstart.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.
Prerequisites
- An active Audity account (Starter tier or higher recommended; Solo / Scout work but are read-only)
- One of: Claude Desktop / Claude.ai (Pro+), ChatGPT (Plus+ for Custom GPTs), Cursor, n8n, or any MCP-compatible client
1. Get a Personal Access Token
- Sign in to app.auditynow.com
- Go to Settings → API Tokens
- Click Create Token
- Label it (e.g.
Claude on my MacBook,n8n production) and pick Read + Write scopes - Copy the token immediately, it starts with
aky_and is shown only once
2. Connect your agent
Each platform’s setup has its own quirks; pick yours and follow the deeper guide for a step-by-step.- Claude
- ChatGPT
- Cursor
- n8n
Settings → Connectors → Add Custom Connector → paste
https://docs.auditynow.com/mcp. Configure the Authorization: Bearer aky_<your-token> header when prompted.Full Claude guide →3. Verify it works
Ask your agent any of these:4. Run your first agent-driven audit
Try a task that chains multiple tools together. Use a real client name from your workspace, or a hypothetical one if you’re evaluating:POST /api/projects, creates the project (1,000 credits)POST /api/projects/{id}/audit-analysis, runs synthesis (synchronous, 60–300 seconds)GET /api/projects/{id}/opportunities, fetches the AI-generated opportunities- The agent synthesizes a summary citing the IDs
Save the project ID. The agent will mention it in its response. You’ll need it for follow-up prompts like “pull the deliverables for ” or “patch the description on “.
5. Try a Nucleus workflow
Audity’s persistent memory layer is the agent’s other superpower. After running a few audits, try:GET /api/nucleus/memories?type=pattern and surfaces what’s there. If you don’t have any patterns yet, ask:
POST /api/nucleus/memories and creates an explicit memory you’ll find on every future Nucleus query.
Scope for v1
The agent surface is deliberately narrow. These belong to the web app, not the API:- Document upload (PDFs, transcripts, contracts). Once uploaded via the dashboard, agents can read documents via project detail.
- Deliverable regeneration. Stakeholder memos and other deliverable docs are produced by the synthesis pipeline; agents read them, they don’t trigger fresh generation.
- Web research. The route exists but isn’t on the agent allowlist in v1. Trigger from the web app.
- PAT management via PAT. Tokens are created and revoked from a browser session, not via the API.
- Listing or managing ReadyLinks. Manage links via the web app; the lead listing endpoint accepts a
staticSlugIdfilter so you can scope queries.
What’s next
Run a full audit workflow
The end-to-end agent recipe for taking a client from intake to deliverables.
Lead conversion playbook
Triage your ReadyLink inbox and convert qualified leads from your AI assistant.
Working with Nucleus
Memories, captures, insights, contacts. The persistent layer.
Authentication deep dive
Token formats, scopes, rotation, error codes, what’s logged.
API Quickstart (curl)
Skip MCP, call the API directly from a terminal or script.
Browse the spec
The full OpenAPI 3.1 reference. Click any endpoint to try it live.