Generate copy/paste config for Custom GPT Actions (OpenAPI) and Assistants (tools array).
2) Custom GPT Actions (OpenAPI 3.1)
Paste this schema into GPT Builder → Actions → Import from text.
3) Assistants API tools (functions array)
Use this tools JSON in code when creating/updating an Assistant.
4) Starter Agent Instructions
Copy into your Custom GPT or Assistant system prompt. Keep it brief and expand as needed.
5) JSON-RPC request template
When the Assistant calls a tool, POST this body to /mcp.
{
"jsonrpc": "2.0",
"id": "",
"method": "",
"params": { /* per-tool params */ }
}