Quickstart
1. Create Broker Credentials
- Open
/lab/mad-mcps/portal/. - Configure at least one MCP under Integrations.
- 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
resultand noerror. - Confirm the downstream MCP shows expected side effects.
- Rotate credentials if any token exposure is suspected.