Integrations · MCP

Connect mink to your AI assistant.

mink's MCP server lets Claude, ChatGPT, Cursor, and other AI assistants search local events, RSVP, manage your saved events, and — for organisers — create and run events. As you, with your permission.

MCP access is part of a paid plan. Connecting an assistant needs mink Plus (personal) or mink Pro (organiser tools) — free accounts see an upgrade prompt at the approval step.
See pricing
Server URL
https://minkapp.com/mcp — Streamable HTTP
Auth
OAuth — you sign in with your mink account and approve scopes; no API keys. Revoke access anytime at minkapp.com → Profile → Connected apps.
Plan
mink Plus (personal) or mink Pro (organiser tools) — see pricing.
Scopes
events.read search, browse + your lists · events.write.self RSVP, save, profile · events.organize organiser tools
Set up

Add mink to your assistant.

Claude claude.ai · Desktop · mobile

Settings → ConnectorsAdd custom connector → paste the server URL → AddConnect and sign in to mink.

https://minkapp.com/mcp

Once mink is listed in the Claude directory, it's one click from claude.ai/directory.

Claude Code

claude mcp add --transport http mink https://minkapp.com/mcp
claude mcp login mink        # or run /mcp inside a session

Or install the plugin (bundles a usage skill):

/plugin marketplace add minkapp/claude-plugins
/plugin install mink@mink

ChatGPT developer mode

Settings → Security and login → enable Developer mode, then Settings → Plugins+ → paste the server URL, choose OAuth, and sign in to mink.

Read tools (search, event details, your lists) work on ChatGPT Plus/Pro; write actions (RSVP) are available on Business/Enterprise workspaces. mink supports ChatGPT deep research via its search/fetch tools.

Cursor

Add to Cursor or add to ~/.cursor/mcp.json:
{ "mcpServers": { "mink": { "url": "https://minkapp.com/mcp" } } }

VS Code GitHub Copilot

code --add-mcp '{"name":"mink","type":"http","url":"https://minkapp.com/mcp"}'

Or find mink in the Extensions view's MCP servers section (via the GitHub MCP Registry).

OpenClaw

openclaw mcp add mink --url https://minkapp.com/mcp --transport streamable-http --auth oauth
openclaw mcp login mink

Or install the skill: openclaw skills install @minkapp/mink.

Any other MCP client

{ "mcpServers": { "mink": { "type": "http", "url": "https://minkapp.com/mcp" } } }

The server implements MCP authorization (OAuth 2.1 + PKCE with dynamic client registration), so any spec-compliant client can connect by URL.

For developers

Building your own agent?

OpenAI API Responses API · Agents SDK

# Hosted MCP tool
{"type": "mcp", "server_label": "mink", "server_url": "https://minkapp.com/mcp",
 "authorization": user_access_token, "require_approval": "never"}

Anthropic API MCP connector

client.beta.messages.create(..., mcp_servers=[{
    "type": "url", "url": "https://minkapp.com/mcp",
    "name": "mink", "authorization_token": user_access_token}])

Your app obtains user_access_token by registering an OAuth client (POST https://minkapp.com/mcp/oauth/register) and running the standard authorization-code + PKCE flow.

Capabilities

What the assistant can do.

Tool What it does
search / search_eventsFind upcoming public events (free text / geo)
get_event / fetchFull event details
register_for_event / unregister_from_eventRSVP for you
save_event / unsave_event, list_my_saved_eventsBookmarks
list_my_registrationsYour upcoming RSVPs
get_my_profile / update_my_profileDisplay profile (never email/phone)
create_event, update_event, approve_member, list_event_attendeesOrganiser tools (Pro)
get_platform_helpHow-mink-works questions
Every call is rate-limited per tool and audit-logged. Private events are never enumerable; profile tools never expose contact details or precise location.

Support: support@minkapp.com · Privacy: privacy policy