The Model Context Protocol (MCP) is the primary interface for AI clients to discover and call tools in Plinqx.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.
Base URL
Authentication
Authenticate using API key:Endpoints
List Tools
GET /mcp/tools
Returns all tools available to the authenticated API key’s Collections.
See Tools List for details.
Call Tool
POST /mcp/tools/:name
Executes a tool with provided arguments.
See Tools Call for details.
JSON-RPC Support
Plinqx also supports JSON-RPC 2.0:POST /mcp/rpc
Use JSON-RPC for clients that prefer RPC-style communication.
Response Format
All MCP endpoints return JSON:Rate Limiting
Rate limits apply per API key:- Default: Varies by plan
- Per-Collection: Configurable via policies
- Headers: Rate limit info in response headers
Error Handling
Errors follow MCP protocol format:Next Steps
Tools List
Learn about the tools list endpoint
Tools Call
Learn about tool execution