Run this after Dashboard setup — once you have copied the API key and MCP URL from Agentic Stack → Overview. No SDK or frontend required.

Prerequisites

  • curl and jq (optional, for pretty JSON)
  • Application API key from Overview
  • MCP URL (e.g. https://agent-kit.abstraxn.com/mcp or your dev host)
Run these commands on your machine or CI — not in a public gist. Rotate the key if it leaks.

Step 1 — List MCP tools (~30 seconds)

Expect HTTP 200 and a JSON-RPC result.tools array (tool count grows over time — use the live list, do not hardcode a fixed number).
Success looks like: result.tools is a non-empty array; each item has name, description, and inputSchema. If it fails: See Troubleshooting — MCP returns 401.

Step 2 — Call one tool (optional)

Pick any name from Step 1 and use its inputSchema for arguments. Example shape:
Agents are created via SDK quickstart or REST — not from the dashboard alone. If you see “Multiple active agents” or “No active agents”: See Troubleshooting.

Step 3 — CLI or Cursor (optional)

Terminal: Install Abstraxn CLI and run abstraxn loginabstraxn mcp tools — same tools/list as Step 1 without curl. IDE: Paste the Overview MCP configuration snippet into Cursor, restart, and confirm the same tools appear in the MCP panel. Details: MCP in Cursor.

Checklist

StepPass criteria
tools/list200 + non-empty result.tools
tools/call (optional)200 + tool result for a chosen name
CLI (optional)abstraxn mcp tools lists same tools
CursorTools visible after restart

What this test does not cover

Next steps

Abstraxn CLI

Login, chat, and MCP from the terminal.

SDK quickstart

Create agents and store accessKey.

Credentials

Full cheat sheet for all secrets.