Partner beta for connecting approved AI agents to MAI Deal Intelligence. Query M&A signals, discover targets, match buyers, and generate deal theses through MCP or A2A workflows.
Approved partner beta clients can add MAI to Claude Desktop or any MCP-compatible client:
{
"mcpServers": {
"mai-deals": {
"url": "https://mcp.mai.deals/mcp",
"transport": "streamable-http"
}
}
}
Once approved and configured, your agent can call the tools below directly.
Agent Card (discovery):
GET https://mai.deals/.well-known/agent-card.json
Send a query via JSON-RPC:
# Python example
import httpx, json
resp = httpx.post("https://api.mai.deals/a2a", json={
"jsonrpc": "2.0",
"id": "1",
"method": "SendMessage",
"params": {
"message": {
"messageId": "msg-001",
"role": "user",
"parts": [{
"data": {
"skill_id": "discover_targets",
"params": {
"industry": "manufacturing",
"state": "TX",
"min_score": 60
}
},
"mediaType": "application/json"
}]
}
}
})
task = resp.json()["result"]["task"]
print(json.dumps(task["artifacts"], indent=2))
Or use natural language (skill is auto-detected):
# curl example
curl -X POST https://api.mai.deals/a2a \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": "1",
"method": "SendMessage",
"params": {
"message": {
"messageId": "msg-001",
"role": "user",
"parts": [{"text": "Find manufacturing companies in Texas showing sell signals"}]
}
}
}'
MCP and A2A workflows are in approved partner beta. Access may require scoped credentials, use-case review, and workflow-specific limits.
Integrate MAI into your deal sourcing workflow through an approved partner beta.
Request Partner AccessAgent-to-tool interface. Your Claude, GPT, or any MCP-compatible agent calls MAI tools directly. Structured inputs, structured outputs. No prompt engineering needed.
https://mcp.mai.deals/mcp@modelcontextprotocol/sdk v1.27+Agent-to-agent interface. Your agent discovers MAI via the Agent Card, sends tasks via JSON-RPC, receives structured results. Follows the A2A v1.0 specification under the Linux Foundation's Agentic AI Foundation.
https://mai.deals/.well-known/agent-card.jsonhttps://api.mai.deals/a2aSendMessage