Read Users Me

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://docs.thankly.ai/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Thankly MCP server": {
    "url": "https://docs.thankly.ai/mcp"
  }
}

Close
GET /auth/me

Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • clientId string Required
    • orgId string Required
    • expiresAt integer Required
GET /auth/me
curl \
 --request GET 'http://api.example.com/auth/me' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "clientId": "string",
  "orgId": "string",
  "expiresAt": 42
}