Skip to content

MCP Server

The hosted Wink MCP server is available at:

https://docs.mcp.wink.travel/mcp

Point compatible AI clients (VS Code, Cursor, others implementing MCP HTTP transport) at this endpoint to let them:

  • Browse product & platform docs (wink://docs/...)
  • Browse live OpenAPI specs and operation docs (wink://api/...)
  • Perform lightweight semantic / keyword search over docs and live APIs

Use the primary streamable HTTP endpoint:

https://docs.mcp.wink.travel/mcp

If your client only supports SSE, use:

https://docs.mcp.wink.travel/sse

Official docs: Connect Claude Code to tools via MCP

Anthropic recommends the remote HTTP transport for cloud-hosted MCP servers:

Terminal window
claude mcp add --transport http wink-docs https://docs.mcp.wink.travel/mcp
claude mcp list

Inside Claude Code, run /mcp to inspect server status. If you want to share the server with the whole repo, add --scope project so Claude Code writes the config to .mcp.json.

Official docs: Docs MCP quickstart for Codex

OpenAI documents MCP setup through the Codex CLI, and notes that the configuration is shared with the IDE extension:

Terminal window
codex mcp add wink-docs --url https://docs.mcp.wink.travel/mcp
codex mcp list

Cursor MCP docs: https://cursor.com/docs/context/mcp Setup: Add remote server via MCP settings.

{
"mcpServers": {
"wink-docs": {
"url": "https://docs.mcp.wink.travel/mcp",
}
}
}

Official docs: https://code.visualstudio.com/docs/copilot/customization/mcp-servers Minimal remote config (user or workspace mcp.json):

{
"servers": {
"wink-docs": {
"type": "http",
"url": "https://docs.mcp.wink.travel/mcp"
}
}
}

Tips:

  • Use Command Palette: “MCP: List Servers” to confirm connection & browse tools.
  • Tools picker lets you enable/disable api_search and docs_search.
  • Add context: Chat view → Add Context → MCP Resources to attach docs pages.
URIDescription
wink://docsDocumentation index (grouped by category)
wink://docs/{path}Specific documentation article (Markdown / MDX)
wink://apiLive OpenAPI catalog discovered from Wink’s swagger config
wink://api/{apiName}Compact API summary with auth, tags, headers, and sample operations
wink://api/{apiName}/operationsFull operation listing grouped by tag
wink://api/{apiName}/operation/{key}Individual operation detail (params, request body, responses)
wink://api/{apiName}/schema/{schemaName}Resolved component schema with nested fields, types, and examples
wink://api/{apiName}/operation/{key}/requestRequest-focused view with required inputs and minimal example payload
wink://api/{apiName}/operation/{key}/response/{status}Response-focused view for a specific status code
wink://api/{apiName}/operation/{key}/recipeTask-oriented flow for calling that operation correctly
ToolPurposeTypical Query Examples
api_searchFind the live API or operation to integrate againstcreate affiliate, payment receipt, lookup inventory, invite manager
docs_searchFind conceptual docs / guidesauthentication, webhooks, wordPress

Leave query empty to receive suggestions. Every result includes the MCP URI you can open. For operation hits, api_search also returns linked request, response, schema, and recipe URIs so agents can jump directly into the most useful subresource.

  1. Run api_search with your intent (e.g. “create affiliate” or “payment receipt”).
  2. Open the returned wink://api/... URI, or follow its linked request_uri, response_uris, request_schema_uris, response_schema_uris, and recipe_uri fields.
  3. Use docs_search for supporting concepts (authentication, webhooks, workflows).
  • Each returned URI can be opened by the agent for full content.
  • The wink://api tree is live and follows the current upstream OpenAPI catalog instead of a generated repo index.
  • Suggestions appear automatically when queries are empty.
Wink on GitHub