MCPInvoke MCP JSON-RPC endpoint

Invoke MCP JSON-RPC endpoint

Main MCP JSON-RPC endpoint.

Supports:

  • Single JSON-RPC request objects
  • Batch JSON-RPC request arrays
  • Server-Sent Events when Accept: text/event-stream is sent

Authentication rules:

  • No authentication required for initialize, tools/list, and ping
  • Authentication required for tools/call
  • Bearer tokens may be API keys with the nf_ prefix or OAuth access tokens with the mcp_at_ prefix
curl -X POST "https://api.example.com/mcp-server/" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (API key or OAuth access token)" \
  -d '{
  "jsonrpc": "2.0",
  "id": "req_1",
  "method": "tools/list",
  "params": {}
}'
{
  "jsonrpc": "2.0",
  "id": "req_1",
  "result": {
    "content": [
      {
        "type": "text",
        "text": "Tool completed successfully."
      }
    ],
    "structuredContent": {
      "filingId": "filing_123",
      "status": "completed"
    }
  }
}
POST
/
POST
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (API key or OAuth access token)
Bearer Tokenstring
Required

Bearer authentication using Nomadfiling API keys with the nf_ prefix or OAuth access tokens with the mcp_at_ prefix.

Bearer authentication using Nomadfiling API keys with the nf_ prefix or OAuth access tokens with the mcp_at_ prefix.
Content-Typestring
Required

The media type of the request body

Options: application/json
No request body parameters defined
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (API key or OAuth access token). Bearer authentication using Nomadfiling API keys with the nf_ prefix or OAuth access tokens with the mcp_at_ prefix.

Body

application/json
datastring
Required

Raw application/json data

Responses

jsonrpcstring
Required
Allowed values:2.0
idstring
Required

Request identifier copied from the request.

resultobject
Required