Skip to main content

Quickstart

1. Create Broker Credentials

  1. Open /lab/mad-mcps/portal/.
  2. Configure at least one MCP under Integrations.
  3. Go to Configurations and generate a broker credential set.

2. Initialize MCP Session

{
"jsonrpc": "2.0",
"id": "init",
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {},
"clientInfo": { "name": "my-client", "version": "1.0.0" }
}
}

3. Discover Tools

{
"jsonrpc": "2.0",
"id": "list",
"method": "tools/list",
"params": {}
}

4. Call a Tool

{
"jsonrpc": "2.0",
"id": "call",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-find",
"arguments": {
"collection_name": "school",
"query": "conflict resolution styles",
"limit": 5
}
}
}

5. Validate in Production

  • Confirm response includes result and no error.
  • Confirm the downstream MCP shows expected side effects.
  • Rotate credentials if any token exposure is suspected.