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

@synchronity/mcp-server

v0.5.3

Published

Synchronity MCP Server - Exposes all 11 Synchronity tools as Model Context Protocol endpoints for Claude, ChatGPT, and other LLM agents

Readme

@synchronity/mcp-server

npm version npm downloads

MCP (Model Context Protocol) server for Synchronity — gives AI assistants like Claude the tools to autonomously browse, compare, and purchase products on connected e-commerce stores.

Installation

npm install -g @synchronity/mcp-server

Or use the .mcpb Claude Desktop extension — download the latest package from your Synchronity dashboard.

Claude Desktop Setup

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "synchronity": {
      "command": "synchronity-mcp",
      "env": {
        "GATEWAY_URL": "https://api.synchronity.app",
        "AIT": "your-agent-identity-token",
        "DEFAULT_SITE_ID": "your-site-id"
      }
    }
  }
}

Claude Web Setup

In Claude web, go to Settings → Integrations → Add Integration and enter:

https://api.synchronity.app/mcp

Get an Agent Token

curl -X POST https://api.synchronity.app/v1/auth/agents/register \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-agent",
    "scopes": ["read_products", "manage_cart", "execute_checkout", "read_orders"]
  }'

Available Tools

| Tool | Description | |------|-------------| | list_sites | List connected stores | | search_products | Search products on a connected store | | get_product | Get full product details by ID | | get_product_reviews | Get reviews for a product | | compare_products | Compare products across multiple stores | | create_cart | Create a new shopping cart | | get_cart | Get current cart contents | | add_to_cart | Add an item to the cart | | remove_from_cart | Remove an item from the cart | | apply_coupon | Apply a discount coupon | | set_shipping_address | Set the shipping destination and fetch shipping rates | | select_shipping_option | Select a shipping rate; binds it to the cart total | | execute_checkout | Place the order (requires delegation approval) | | get_order | Get order details by ID | | list_orders | List recent orders | | request_delegation | Request human approval for checkout | | submit_delegation_otp | Submit the emailed delegation approval code | | check_delegation | Poll delegation approval status | | get_payment_methods | List available payment channels for an order | | initiate_payment | Start in-chat payment for an order | | submit_payment_otp | Submit a payment OTP when prompted | | get_payment_status | Poll payment/order status until paid |

Links