Skip to main content
All REST API requests use bearer authentication. Create tokens in the Mentionpath app under Account → API, or connect an MCP client and complete the OAuth flow — both issue tokens scoped to your organization.

Base URL

API tokens

  1. Open Account → API in the app.
  2. Choose the scopes your integration needs (read-only scopes are preselected).
  3. Create a token and copy the secret — it is shown once.
Send the token on every request:

OAuth (MCP clients)

Hosted MCP clients (Claude, ChatGPT, Cursor, and others) use OAuth instead of manual tokens. Discovery metadata is published at:
  • https://api.mentionpath.ai/.well-known/oauth-authorization-server
  • https://api.mentionpath.ai/.well-known/oauth-protected-resource
The MCP endpoint is https://api.mentionpath.ai/mcp (Streamable HTTP, POST only). See the MCP tab for client setup.

Idempotency

Include an Idempotency-Key header on write requests (POST, PATCH, DELETE) to safely retry without duplicating work:

Errors