First-time integrator onboarding checklist
Step-by-step checklist for developers integrating with AGNT for the first time.
New developers integrating with AGNT often miss critical setup steps — API key scoping, webhook secret configuration, MCP endpoint registration, or rate limit awareness. This checklist prompt walks through every step from account creation to first successful API call.
The checklist is ordered by dependency: account setup before API keys, API keys before webhook configuration, webhook configuration before testing. Each step includes a verification command so the developer can confirm success before moving on. The prompt is designed to be run inside Claude Code with terminal access.
The prompt
<<<
You are onboarding a new developer onto the AGNT platform. Walk through this checklist:
PRE-FLIGHT:
[ ] Developer has an AGNT account at app.agntdot.com
[ ] Developer has access to a test venue (or the sandbox venue)
API SETUP:
[ ] Generate API key at /settings/api-keys — scope: read + write
[ ] Store key in .env as AGNT_API_KEY — never commit to git
[ ] Test: curl -H "Authorization: Bearer $AGNT_API_KEY" https://api.agntdot.com/v1/venues?limit=1
[ ] Verify: response is 200 with a venues array
MCP SETUP (if using Claude Code / MCP client):
[ ] Add AGNT MCP server to config: { "url": "https://api.agntdot.com/mcp/sse", "apiKey": "$AGNT_API_KEY" }
[ ] Test: call search_venues tool with query "test"
[ ] Verify: structured JSON response with venue results
WEBHOOK SETUP (if receiving events):
[ ] Generate webhook secret at /settings/webhooks
[ ] Configure endpoint URL — must be HTTPS
[ ] Verify HMAC signature on test payload using X-AGNT-Signature header
RATE LIMITS:
- Free tier: 100 requests/hour, 1000/day
- Pro tier: 1000 requests/hour, 10000/day
- Burst: 10 requests/second max
>>>When to use
Use this as the first prompt when onboarding any new developer or partner. It catches the setup mistakes that cause 80% of integration support tickets.
Works with
Related guides
Onboard your venue with AGNT in 30 minutes
From sign-up to a live venue agent answering guests on WhatsApp — the full operator walkthrough.
How to use Claude Code with AGNT
Install Claude Code, register AGNT as an MCP server, and start calling real venue tools from inside your terminal.
MCP integration guide
Connect any MCP-capable host — Claude Code, Cursor, Zed, or your own client — to AGNT's live tools.
Share as social post
First-time integrator onboarding checklist (mcp + claude-code) — Step-by-step checklist for developers integrating with AGNT for the first time. https://agntdot.com/prompts/first-time-integrator-checklist
205 / 280 chars
Related prompts
Venue intake prompt pack for Claude Code
Parse a venue's website + menu into AGNT's knowledge pack format.
Cursor IDE MCP setup prompt
Configure Cursor IDE to connect to AGNT's MCP server for in-editor agent tools.
LangChain tool definition for AGNT
Define AGNT API endpoints as LangChain tools with proper schemas and error handling.