
Wishfinity
OfficialSave any product URL to your Wishfinity wishlist — organize, track, and share your favorite finds in one simple click.
Save any product URL to your Wishfinity wishlist
About Wishfinity
Wishfinity is an official MCP server published by wishfinity that provides AI assistants with tools and capabilities via the Model Context Protocol. Save any product URL to your Wishfinity wishlist — organize, track, and share your favorite finds in one simple click. It is categorized under productivity, developer tools.
How to install
You can install Wishfinity in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
License
Wishfinity is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
+W MCP Server (Wishfinity)
+W is a universal "save for later" action for commerce. This MCP server lets AI assistants save any product URL to a user's Wishfinity wishlist with one click.
Works with Claude, ChatGPT, Gemini, LangChain, OpenAI Agents SDK, and any MCP-compatible client.
What it does
When an AI recommends a product, it can offer +W Add to Wishlist. The user clicks the link, and the product is saved to their Wishfinity account — ready for later purchase or gifting.
User: "Find me a good espresso machine under $200"
AI: Here are 3 options...
[+W Add to Wishlist] [View on Amazon]
Zero-dependency option: /add-wish
Don't need the full MCP server? The /add-wish skill teaches any AI agent the +W pattern using just a URL — no npm, no server, no setup:
https://wishfinity.com/add?url={any_product_url}
→ View the /add-wish skill file
Works with any AI platform. The MCP server below adds richer tool integration, but /add-wish is all you need to get started.
Quick start
Option 1: Local installation (stdio transport)
Best for Claude Desktop, ChatGPT Desktop, Cursor, VS Code, and local development.
npm install wishfinity-mcp-plusw
Add to your MCP client configuration:
{
"mcpServers": {
"wishfinity": {
"command": "npx",
"args": ["wishfinity-mcp-plusw"]
}
}
}
Option 2: Remote endpoint (HTTP transport)
Best for server-side agents, LangChain production deployments, and hosted AI applications.
https://wishfinity-mcp-plusw.wishfinity.workers.dev/mcp
Platform Setup Guides
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
{
"mcpServers": {
"wishfinity": {
"command": "npx",
"args": ["wishfinity-mcp-plusw"]
}
}
}
ChatGPT Desktop
When MCP support is available, add to your ChatGPT MCP configuration:
{
"mcpServers": {
"wishfinity": {
"command": "npx",
"args": ["wishfinity-mcp-plusw"]
}
}
}
Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"wishfinity": {
"command": "npx",
"args": ["wishfinity-mcp-plusw"]
}
}
}
LangChain
from langchain_mcp_adapters.client import MultiServerMCPClient
from langchain.agents import create_agent
async def main():
client = MultiServerMCPClient({
"wishfinity": {
"command": "npx",
"args": ["wishfinity-mcp-plusw"],
"transport": "stdio",
}
})
tools = await client.get_tools()
agent = create_agent("openai:gpt-4", tools)
result = await agent.ainvoke({
"messages": [{"role": "user", "content": "Find me a coffee maker and save it to my wishlist"}]
})
For production (HTTP transport):
client = MultiServerMCPClient({
"wishfinity": {
"url": "https://wishfinity-mcp-plusw.wishfinity.workers.dev/mcp",
"transport": "streamable_http",
}
})
OpenAI Agents SDK
from agents import Agent, Runner
from agents.mcp import MCPServerStdio
async def main():
async with MCPServerStdio(
name="wishfinity",
params={
"command": "npx",
"args": ["wishfinity-mcp-plusw"],
},
) as server:
agent = Agent(
name="Shopping Assistant",
instructions="Help users find products and save them to wishlists.",
mcp_servers=[server],
)
result = await Runner.run(agent, "Find a good gift for a coffee lover and save it")
print(result.final_output)
Hugging Face Agents
from huggingface_hub import Agent
agent = Agent(
model="meta-llama/Llama-3.1-70B-Instruct",
mcp_servers=[{
"command": "npx",
"args": ["wishfinity-mcp-plusw"]
}]
)
response = agent.run("Find me running shoes under $150 and save to wishlist")
How it works
- AI calls the
add_to_wishlisttool with a product URL - MCP server returns a Wishfinity link:
https://wishfinity.com/add?url=... - User clicks the link → logs in (first time only) → product is saved
- User can organize, share, or purchase later
No API keys required. Authentication happens on Wishfinity's website when the user clicks the link.
Tool: add_to_wishlist
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Product page URL |
Output
| Field | Type | Description |
|---|---|---|
action_url | string | Wishfinity link to open in browser |
requires_user_action | boolean | Always true (user must click) |
display_text | string | Suggested button label |
Example
// Input
{ "url": "https://amazon.com/dp/B0EXAMPLE" }
// Output
{
"action_url": "https://wishfinity.com/add?url=https%3A%2F%2Famazon.com%2Fdp%2FB0EXAMPLE",
"requires_user_action": true,
"display_text": "Open to add to Wishfinity"
}
When to offer +W
AI clients should offer +W when:
- Explicit requests: "save for later," "add to wishlist," "bookmark this"
- After recommending products: Proactively offer to save shown items
- Indecision moments: "maybe later," "too expensive right now," "need to think about it"
- Gift context: "for my mom," "birthday gift," "perfect for my friend"
See aliases.json for the full list of trigger phrases.
Transports
| Transport | Use Case | Endpoint |
|---|---|---|
| stdio | Local clients (Claude Desktop, Cursor, etc.) | npx wishfinity-mcp-plusw |
| HTTP | Remote/server-side agents | https://wishfinity-mcp-plusw.wishfinity.workers.dev/mcp |
Button kit
The /button-kit folder contains optional UI assets (SVG icon, HTML/CSS snippets) if you want a consistent +W button appearance.
CDN URLs:
- Small:
https://cdn.jsdelivr.net/npm/wishfinity-mcp-plusw@latest/button-kit/Wishfinity-Button-Small.svg - Medium:
https://cdn.jsdelivr.net/npm/wishfinity-mcp-plusw@latest/button-kit/Wishfinity-Button-Medium.svg - Large:
https://cdn.jsdelivr.net/npm/wishfinity-mcp-plusw@latest/button-kit/Wishfinity-Button-Large.svg
Documentation
- SPEC.md — Full technical specification
- INTEGRATION_GUIDE.md — How to integrate +W into your UI
- CLOUDFLARE_SETUP.md — Deploy your own HTTP endpoint
- aliases.json — Machine-readable trigger phrases
Links
Changelog
v1.2.2 (December 24, 2025)
Critical Fix: npx execution for all developers
- Fixed main module detection to work with npx symlinks
- Resolves crash when running
npx wishfinity-mcp-plusw - Package now works flawlessly for all npm installations
v1.2.1 (December 24, 2025)
Critical Fix: MCP SDK compatibility
- Updated
@modelcontextprotocol/sdkdependency to^1.25.0 - Resolves server disconnection with SDK 1.25.1+
- Compatible with latest MCP SDK versions
v1.2.0 (December 23, 2025)
- Added MCP prompts:
save_for_later,shopping_assistant,gift_ideas - Added MCP resources:
wishfinity://guide,wishfinity://triggers - Enhanced integration capabilities for AI assistants
License
MIT
Alternatives
Related Skills
Browse all skillsUI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".
Leveraging AI coding assistants and tools to boost development productivity, while maintaining oversight to ensure quality results.
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.
Creates educational Teams channel posts for internal knowledge sharing about Claude Code features, tools, and best practices. Applies when writing posts, announcements, or documentation to teach colleagues effective Claude Code usage, announce new features, share productivity tips, or document lessons learned. Provides templates, writing guidelines, and structured approaches emphasizing concrete examples, underlying principles, and connections to best practices like context engineering. Activates for content involving Teams posts, channel announcements, feature documentation, or tip sharing.
Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.