ai.openmandate/mcp
Official15 toolsOpenMandate
MCP server for OpenMandate — find cofounders and early teammates beyond your network. 15 tools.
Find cofounders and early teammates beyond your existing network.
Captured live from the server via tools/list.
openmandate_create_mandate
Create a new mandate on OpenMandate. Provide what the user is looking for (want) and what they bring to the table (offer). The user's verified contacts are automatically attached. Returns the mandate with follow-up questions. You MUST relay these questions to the user and collect their actual answers before calling openmandate_submit_answers. Do not answer questions on the user's behalf. If the user has no verified contacts, they must add one first at https://openmandate.ai/settings or use openmandate_list_contacts to check.
Parameters (2)
- wantstringrequired
What the user is looking for (cofounder, service provider, investor, etc.). Minimum 20 characters.
- offerstringrequired
What the user brings to the table (skills, experience, resources, etc.). Minimum 20 characters.
openmandate_submit_answers
Submit the user's answers to pending intake questions. The mandate must be in 'intake' status with pending questions. IMPORTANT: Before calling this, you must show each pending question to the user and collect their real answer. Never fabricate or infer answers. OpenMandate may return additional questions. Relay each round to the user until the mandate becomes active.
Parameters (2)
- mandate_idstringrequired
The mandate ID to submit answers for.
- answersarrayrequired
Array of answers to pending questions.
openmandate_get_mandate
Get a mandate by ID. Returns the mandate's current status, any pending intake questions, and summary once active. Use this to check progress or retrieve questions after creating a mandate.
Parameters (1)
- mandate_idstringrequired
The mandate ID to retrieve.
openmandate_list_mandates
List the user's open mandates. Returns non-closed mandates by default. Pass status to filter (e.g. status='closed' for history).
Parameters (2)
- statusstring
Filter by status: intake, active, matched, pending_input, closed.
- limitinteger
Maximum number of mandates to return (default 20, max 100).
openmandate_close_mandate
Close (withdraw) a mandate. This is permanent — the mandate will stop matching and cannot be reopened. Only close if the user explicitly wants to withdraw.
Parameters (1)
- mandate_idstringrequired
The mandate ID to close.
openmandate_list_matches
List matches for the authenticated user. Returns matches with compatibility grade, strengths, and concerns. Check this periodically after a mandate becomes active.
Parameters (1)
- limitinteger
Maximum number of matches to return (default 20, max 100).
openmandate_get_match
Get detailed information about a specific match, including compatibility grade, strengths, concerns, and — if both parties accepted — the counterparty's contact information.
Parameters (1)
- match_idstringrequired
The match ID to retrieve.
openmandate_respond_to_match
Accept or decline a match. If you accept and the other party also accepts, contact info is revealed to both sides. Declining is permanent for this match.
Parameters (4)
- match_idstringrequired
The match ID to respond to.
- actionstringrequired
Either 'accept' or 'decline'.
- decline_reasonstring
Why the user is declining. Only used when action is 'decline'.
- decline_reason_textstring
Free-text detail when decline_reason is 'other'.
openmandate_submit_outcome
Report how a confirmed match went. Available after both parties accepted and contact info was revealed. Outcomes: - 'succeeded': Found the right person. Mandate closes. - 'failed': Didn't work out. Mandate reactivates for new matches. - 'ongoing': Still in conversation. OpenMandate checks back later. IMPORTANT: Always confirm the outcome with the user before submitting. This affects their mandate and matching status.
Parameters (2)
- match_idstringrequired
The match ID to report outcome for.
- outcomestringrequired
Match outcome.
openmandate_list_contacts
List the user's verified contacts. These are the contacts revealed to the other party on match confirmation. Each contact has an ID, type, display label, and verification status.
No parameters.
openmandate_add_contact
Add a new contact for the user. A verification code (OTP) will be sent to the contact address. The user must verify the contact using openmandate_verify_contact before it can be used on mandates. The first contact added becomes the primary contact automatically.
Parameters (3)
- contact_typestringrequired
Contact type.
- contact_valuestringrequired
The contact address to add (e.g. email address).
- display_labelstring
Optional human-readable label (e.g. 'Work email'). Defaults to the contact type.
openmandate_verify_contact
Verify a contact by submitting the OTP code sent to it. The user must check their email for the 8-digit code. After verification, the contact can be used on mandates.
Parameters (2)
- contact_idstringrequired
The contact ID to verify.
- codestringrequired
The 8-digit verification code from the email.
openmandate_update_contact
Update a contact's display label or set it as the primary contact. Setting a contact as primary will unset any other primary contact.
Parameters (3)
- contact_idstringrequired
The contact ID to update.
- display_labelstring
New display label for the contact.
- is_primaryboolean
Set to true to make this the primary contact.
openmandate_delete_contact
Delete a contact. If the deleted contact was primary, the next verified contact is automatically promoted. This is permanent.
Parameters (1)
- contact_idstringrequired
The contact ID to delete.
openmandate_resend_otp
Resend the verification code for a pending contact. Use this if the user didn't receive the code or it expired (codes expire after 10 minutes). Rate limited to 3 per contact per hour.
Parameters (1)
- contact_idstringrequired
The contact ID to resend verification for.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.openmandate.ai/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.