Skip to main content
The MCP system provides comprehensive APIs through its components. Below is an overview of the available APIs:

MCP Hub API

Core APIs for managing sessions, tools, resources, and prompts.

MCP Chatbot API

APIs for chat interface and AI interactions.

Common Patterns

Authentication

Each component uses its own authentication method:
  • MCP Hub: API key or token-based authentication
  • MCP Chatbot: Inherits authentication from MCP Enterprise

Response Format

All APIs follow a standard response format:
{
  "success": true,
  "data": {
    // Response data
  },
  "error": null
}

Error Handling

Standard error format:
{
  "success": false,
  "data": null,
  "error": {
    "code": "ERROR_CODE",
    "message": "Human readable error message"
  }
}

OpenAPI Specifications