System Status

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://api.onetimesecret.com/doc/api-v2/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"v2 - Secrets API (stable) MCP server": {
  "url": "https://api.onetimesecret.com/doc/api-v2/mcp"
}
Close
GET /api/v2/status

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • success boolean Required
    • status string Required
    • locale string Required
  • 404 application/json

    Not Found - Resource does not exist

    Hide response attributes Show response attributes object
    • error string

      Error type identifier (e.g., "FormError")

    • message string Required

      Human-readable error message

    • field string

      Field that caused the error, if applicable

    • error_id string

      Unique error tracking identifier

  • 500 application/json

    Internal Server Error - Something went wrong

    Hide response attributes Show response attributes object
    • error string

      Error type identifier (e.g., "FormError")

    • message string Required

      Human-readable error message

    • field string

      Field that caused the error, if applicable

    • error_id string

      Unique error tracking identifier

GET /api/v2/status
curl \
 --request GET 'https://uk.onetimesecret.com/api/v2/status'
Response examples (200)
{
  "success": true,
  "status": "string",
  "locale": "string"
}
Response examples (404)
{
  "error": "string",
  "message": "string",
  "field": "string",
  "error_id": "string"
}
Response examples (500)
{
  "error": "string",
  "message": "string",
  "field": "string",
  "error_id": "string"
}