{"name":"ai.openmandate/mcp","slug":"openmandate-mcp","title":"OpenMandate","description":"OpenMandate is in private development and is not accepting new mandates or integrations.","url":"https://mcp.market/server/openmandate-mcp","rating":null,"grade":"C","score":67,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":7,"ok":7,"last_checked_at":"2026-09-21T01:15:42.394Z","last_ok_at":"2026-09-21T01:15:42.394Z","latency_ms":358},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://openmandate.ai","version":"0.6.1","remotes":[{"type":"streamable-http","url":"https://mcp.openmandate.ai/mcp","headers":[{"description":"Bearer API key for an existing OpenMandate account. New integrations are not accepted.","isRequired":true,"isSecret":true,"name":"Authorization"}]}],"packages":[],"tools":[{"name":"openmandate_add_contact","description":"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.\n\nThe first contact added becomes the primary contact automatically.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"contact_type":{"type":"string","description":"Contact type.","enum":["email"]},"contact_value":{"type":"string","description":"The contact address to add (e.g. email address)."},"display_label":{"type":"string","description":"Optional human-readable label (e.g. 'Work email'). Defaults to the contact type."}},"required":["contact_type","contact_value"]}},{"name":"openmandate_close_mandate","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"mandate_id":{"type":"string","description":"The mandate ID to close."}},"required":["mandate_id"]}},{"name":"openmandate_create_mandate","description":"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.\n\nReturns 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.\n\nIf the user has no verified contacts, they must add one first at https://openmandate.ai/settings or use openmandate_list_contacts to check.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"want":{"type":"string","description":"What the user is looking for (cofounder, service provider, investor, etc.). Minimum 20 characters."},"offer":{"type":"string","description":"What the user brings to the table (skills, experience, resources, etc.). Minimum 20 characters."}},"required":["want","offer"]}},{"name":"openmandate_delete_contact","description":"Delete a contact. If the deleted contact was primary, the next verified contact is automatically promoted. This is permanent.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"contact_id":{"type":"string","description":"The contact ID to delete."}},"required":["contact_id"]}},{"name":"openmandate_get_mandate","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"mandate_id":{"type":"string","description":"The mandate ID to retrieve."}},"required":["mandate_id"]}},{"name":"openmandate_get_match","description":"Get detailed information about a specific match, including compatibility grade, strengths, concerns, and — if both parties accepted — the counterparty's contact information.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"match_id":{"type":"string","description":"The match ID to retrieve."}},"required":["match_id"]}},{"name":"openmandate_list_contacts","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"required":[]}},{"name":"openmandate_list_mandates","description":"List the user's open mandates. Returns non-closed mandates by default. Pass status to filter (e.g. status='closed' for history).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"status":{"type":"string","description":"Filter by status: intake, active, matched, pending_input, closed.","enum":["intake","active","matched","pending_input","closed"]},"limit":{"type":"integer","description":"Maximum number of mandates to return (default 20, max 100).","default":20}},"required":[]}},{"name":"openmandate_list_matches","description":"List matches for the authenticated user. Returns matches with compatibility grade, strengths, and concerns. Check this periodically after a mandate becomes active.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"limit":{"type":"integer","description":"Maximum number of matches to return (default 20, max 100).","default":20}},"required":[]}},{"name":"openmandate_resend_otp","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"contact_id":{"type":"string","description":"The contact ID to resend verification for."}},"required":["contact_id"]}},{"name":"openmandate_respond_to_match","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"match_id":{"type":"string","description":"The match ID to respond to."},"action":{"type":"string","description":"Either 'accept' or 'decline'.","enum":["accept","decline"]},"decline_reason":{"type":"string","description":"Why the user is declining. Only used when action is 'decline'.","enum":["wrong_skills","stage_mismatch","location","not_enough_info","already_found","other"]},"decline_reason_text":{"type":"string","description":"Free-text detail when decline_reason is 'other'."}},"required":["match_id","action"]}},{"name":"openmandate_submit_answers","description":"Submit the user's answers to pending intake questions. The mandate must be in 'intake' status with pending questions.\n\nIMPORTANT: 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.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"mandate_id":{"type":"string","description":"The mandate ID to submit answers for."},"answers":{"type":"array","items":{"type":"object","properties":{"question_id":{"type":"string","description":"Question ID from pending_questions."},"value":{"type":"string","description":"Answer value. For text: your answer string. For single_select: the option value. For multi_select: comma-separated option values (e.g. 'python, go')."}},"required":["question_id","value"]},"description":"Array of answers to pending questions."}},"required":["mandate_id","answers"]}},{"name":"openmandate_submit_outcome","description":"Report how a confirmed match went. Available after both parties accepted and contact info was revealed.\n\nOutcomes:\n- 'succeeded': Found the right person. Mandate closes.\n- 'failed': Didn't work out. Mandate reactivates for new matches.\n- 'ongoing': Still in conversation. OpenMandate checks back later.\n\nIMPORTANT: Always confirm the outcome with the user before submitting. This affects their mandate and matching status.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"match_id":{"type":"string","description":"The match ID to report outcome for."},"outcome":{"type":"string","description":"Match outcome.","enum":["succeeded","ongoing","failed"]}},"required":["match_id","outcome"]}},{"name":"openmandate_update_contact","description":"Update a contact's display label or set it as the primary contact. Setting a contact as primary will unset any other primary contact.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"contact_id":{"type":"string","description":"The contact ID to update."},"display_label":{"type":"string","description":"New display label for the contact."},"is_primary":{"type":"boolean","description":"Set to true to make this the primary contact."}},"required":["contact_id"]}},{"name":"openmandate_verify_contact","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"contact_id":{"type":"string","description":"The contact ID to verify."},"code":{"type":"string","description":"The 8-digit verification code from the email."}},"required":["contact_id","code"]}}],"scan":{"score":67,"grade":"C","scanned_at":"2026-09-20T20:08:28.262Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T20:08:28.176Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 737ms"]},"poisoning":{"score":15,"max":15,"notes":["15 tool descriptions checked"]},"auth":{"score":8,"max":15,"notes":["API key sent as a header"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://mcp.openmandate.ai/mcp","reachable":true,"authRequired":false,"latencyMs":737,"serverInfo":{"name":"openmandate","version":"0.6.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://openmandate.ai/favicon.svg","source":"site"},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}