npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

fynd-partner-mcp

v1.0.2

Published

MCP server for Fynd Partner documentation — Platform API, Extensions, AI PIM, Konnect, and Themes

Downloads

307

Readme

fynd-partner-mcp

MCP server for Fynd Partner documentation — Platform API, Extensions (General, Payment, Logistics), and AI PIM.

Install once. Ask your AI anything about the Fynd Partner platform.


What This Covers

| Sub-Skill | Topics | |-----------|--------| | Platform API | 843 ops across Catalog, Orders, Cart, Content, Logistics, Payments, Communication, and more | | General Extension | FDK CLI, bindings, webhooks, deployment pipeline | | Payment Extension | Payment/refund APIs, HMAC checksum, state machines | | Logistics Extension | DP schemes, accounts, order journey, status sync | | AI PIM | SKU enrichment, taxonomy, inbound/outbound connectors, rule engine, marketplace publishing |


Installation

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "fynd-partner": {
      "command": "npx",
      "args": ["-y", "fynd-partner-mcp"]
    }
  }
}

Restart Claude Desktop.


Cursor

Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):

{
  "mcpServers": {
    "fynd-partner": {
      "command": "npx",
      "args": ["-y", "fynd-partner-mcp"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "fynd-partner": {
      "command": "npx",
      "args": ["-y", "fynd-partner-mcp"]
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json:

{
  "servers": {
    "fynd-partner": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "fynd-partner-mcp"]
    }
  }
}

Zed

Add to your Zed settings:

{
  "context_servers": {
    "fynd-partner": {
      "command": { "path": "npx", "args": ["-y", "fynd-partner-mcp"] }
    }
  }
}

Available Tools

Once installed, your AI has access to three tools:

| Tool | What It Does | |------|-------------| | fynd_list_topics | Lists all available sub-skills and reference files | | fynd_get_docs | Loads a specific reference file (e.g. skill="platform-api", topic="catalog") | | fynd_search | Full-text search across all docs — returns matching snippets |

Example Prompts

Which Fynd Platform API should I use to list all products in a store?

How do I implement HMAC checksum for a payment extension?

How does the order journey work in a logistics extension?

What's the inbound connector endpoint for AI PIM and how do I authenticate?

Show me the assign DP webhook payload structure.

What roles are available in AI PIM and what can each role do?

Supported AI Tools

| Tool | MCP Support | |------|-------------| | Claude Desktop | ✅ | | Cursor | ✅ | | Windsurf | ✅ | | VS Code (Copilot) | ✅ | | Zed | ✅ | | Codex | ✅ (via skill files) |


Development

git clone https://github.com/devex-tech/fynd-partner-mcp.git
cd fynd-partner-mcp
npm install
npm run build
node dist/index.js

To update skill content, edit the markdown files in skills/ and rebuild.


Publishing a New Version

# Bump version in package.json, then:
git tag v1.0.1
git push --tags
# GitHub Actions automatically publishes to npm

License

MIT