Create a personal access token Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
POST /api/v1/personal-access-tokens
application/json

Body

  • name string Required

    The name of the personal access token

  • password string(password) Required

    The password of the user for verification

  • account_uuid string(uuid)

    The UUID of the account you would like the token to be used for.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/personal-access-tokens
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/personal-access-tokens' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"Zapier","password":"rZjFcYXkBzxx","account_uuid":"2a08b3d6-0cc5-49fc-8a23-202fe31ff640"}'
Request examples
{
  "name": "Zapier",
  "password": "rZjFcYXkBzxx",
  "account_uuid": "2a08b3d6-0cc5-49fc-8a23-202fe31ff640"
}
Response examples (401)
{
  "message": "Unauthenticated."
}