Chuyển đến nội dung chính

MCP

Bề mặt Model Context Protocol cho phép tác tử đọc và ghi cờ tính năng, phân tích, quy trình và tin nhắn qua lời gọi công cụ. Đây là bề mặt máy-với-máy; yêu cầu từ trình duyệt bị từ chối.

HostServes
https://eu.mcp.prodantix.com

mcp

POST/mcphttps://eu.mcp.prodantix.com

Invoke an MCP method

JSON-RPC 2.0 over HTTP. Every request needs Mcp-Protocol-Version: 2026-07-28.

Auth bearerAuth

Parameters

NameInTypeDescription
Mcp-Protocol-Version requiredheaderstringMust be 2026-07-28

Body

JSON
{
  "id": "integer",
  "jsonrpc": "2.0",
  "method": "server/discover | ping | tools/list | tools/call",
  "params?": "object"
}

Responses

200 A JSON-RPC 2.0 response object.

Try it

curl -X POST "https://eu.mcp.prodantix.com/mcp" \
  -H "Authorization: Bearer $BEARER_AUTH" \
  -H "Content-Type: application/json" \
  -d '{"id":0,"jsonrpc":"2.0","method":"server/discover","params":{}}'

Protocol revision

This server targets revision 2026-07-28. There is no session and no initialize handshake. A request carrying an Mcp-Protocol-Version the server does not support is rejected with JSON-RPC error -32020.

Methods

MethodPurpose
server/discoverServer identity and supported protocol revisions
pingLiveness
tools/listEvery tool this server registers
tools/callInvoke one tool

Authentication

Bearer only. An unauthenticated client learns where to authenticate from GET /.well-known/oauth-protected-resource, which stays reachable with no token at all.

Tools

ToolDoes
prodantix.meThe authenticated principal and its live tenant
prodantix.projects.listThe projects owned by the caller's tenant
prodantix.flags.listA project's feature flags
prodantix.flags.upsertCreate or update a flag
prodantix.flags.archiveArchive a flag
prodantix.analytics.runQueryRun an analytics query
prodantix.workflows.listA project's workflows
prodantix.messages.listA project's messages
prodantix.messages.composeCompose a message

Listing the tools

Bash
curl -X POST "https://eu.mcp.prodantix.com/mcp" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -H "Mcp-Protocol-Version: 2026-07-28" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'