New:Socket for Asana Is Now Available.Learn more
Get Started

@synchronity/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@synchronity/mcp-server

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

Source
npmnpm
Version
0.5.13
Version published
Maintainers
1
Created
Source

@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

ToolDescription
list_sitesList connected stores
search_productsSearch products on a connected store
get_productGet full product details by ID
get_product_reviewsGet reviews for a product
compare_productsCompare products across multiple stores
create_cartCreate a new shopping cart
get_cartGet current cart contents
add_to_cartAdd an item to the cart
remove_from_cartRemove an item from the cart
apply_couponApply a discount coupon
set_shipping_addressSet the shipping destination and fetch shipping rates
select_shipping_optionSelect a shipping rate; binds it to the cart total
execute_checkoutPlace the order (requires delegation approval)
get_orderGet order details by ID
list_ordersList recent orders
request_delegationRequest human approval for checkout
submit_delegation_otpSubmit the emailed delegation approval code
check_delegationPoll delegation approval status
get_payment_methodsList available payment channels for an order
initiate_paymentStart in-chat payment for an order
submit_payment_otpSubmit a payment OTP when prompted
get_payment_statusPoll payment/order status until paid
  • TypeScript SDK

Keywords

agentmesh

FAQs

Package last updated on 17 Jun 2026

Related posts