Send subscription control messages

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/tie-tech/hub/b2b-api/doc/broker-asyncapi/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "broker-asyncapi MCP server": {
    "url": "https://bump.sh/tie-tech/hub/b2b-api/doc/broker-asyncapi/mcp"
  }
}

Close
PUB /market-data

Accepts one of the following messages.

PUBLISH /market-data

Subscribe Request

Client request to subscribe to market(s)

Payload

  • type string Required

    Value is subscribe.

  • markets array[string] Required

    At least 1 element.

  • force_snapshot boolean

    If true, forces fresh snapshot even if already subscribed

    Default value is false.

Payload examples
{
  "type": "subscribe",
  "markets": [
    "string"
  ],
  "force_snapshot": false
}

Unsubscribe Request

Client request to unsubscribe from market(s)

Payload

  • type string Required

    Value is unsubscribe.

  • markets array[string] Required

    At least 1 element.

Payload examples
{
  "type": "unsubscribe",
  "markets": [
    "string"
  ]
}