Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hypha-docs.plinqx.app/llms.txt

Use this file to discover all available pages before exploring further.

Plinqx provides two main API interfaces: the MCP Protocol for AI clients and a REST API for administrative operations.

API Overview

MCP Protocol

The Model Context Protocol (MCP) is the primary interface for AI clients:
  • Base URL: https://hypha-api.plinqx.app/mcp (or your custom domain)
  • Authentication: API key in header or query parameter
  • Endpoints: tools/list and tools/call
MCP is the standard protocol used by ChatGPT, Claude, and other AI platforms to discover and call tools.

REST API

The REST API provides administrative operations:
  • Base URL: https://hypha-api.plinqx.app/services (or your custom domain)
  • Authentication: Session-based (admin portal) or API key
  • Endpoints: Collections, tools, vault, webhooks, and more

Authentication

API Key Authentication

Include your API key in requests:
Authorization: Bearer plinqx_xxxxxxxxxxxxxxxxxxxx
Or as a query parameter:
?api_key=plinqx_xxxxxxxxxxxxxxxxxxxx

Session Authentication

For admin portal operations, use session cookies (handled automatically by the browser).

Rate Limits

API rate limits vary by endpoint and plan:
  • MCP Protocol: Typically higher limits for tool execution
  • REST API: Standard REST API limits
  • Per-Collection: Rate limits can be configured per Collection
Check your plan details for specific rate limits. Rate limits are also configurable via Policies.

Error Handling

All APIs return standard HTTP status codes:
  • 200 OK: Success
  • 400 Bad Request: Invalid request
  • 401 Unauthorized: Authentication required
  • 403 Forbidden: Insufficient permissions
  • 404 Not Found: Resource not found
  • 429 Too Many Requests: Rate limit exceeded
  • 500 Internal Server Error: Server error
Error responses include details:
{
  "error": {
    "message": "Description of the error",
    "code": "ERROR_CODE",
    "details": []
  }
}

Next Steps

MCP Protocol

Learn about MCP endpoints

REST API

Explore REST API endpoints