Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server for the Chit Chats shipping API that enables shipment management, tracking, rate comparison, and batch operations.

README.md

Chit Chats MCP Server

A Model Context Protocol (MCP) server for the Chit Chats shipping API. Query shipments, track packages, manage batches, and access shipping rates programmatically.

Features

  • Shipment Management - List, search, create, and manage shipments
  • Cost Analysis - Get detailed cost breakdowns including postage, tariffs, broker fees
  • HS Tariff Codes - Access line item details with HS codes, SKUs, manufacturer info
  • Shipping Rates - Compare all available carrier options with delivery times
  • Label Downloads - Get PNG, PDF, and ZPL label URLs
  • Batch Operations - Organize shipments into batches for drop-off
  • Order Tracking - Track shipments by order ID (Shopify, Etsy, etc.)

Installation

git clone https://github.com/yourusername/chitchats-mcp.git
cd chitchats-mcp
npm install
npm run build

Configuration

  1. Get your API credentials from Chit Chats Settings > Developer > API Access Tokens
  1. Set your credentials using one of these methods:

Option A: Environment variables in MCP config (recommended)

Pass credentials via -e flags (CLI) or env block (JSON) - see Usage section below.

Option B: .env file

   cp .env.example .env

Add your credentials to .env: `` CHITCHATS_CLIENT_ID=your_client_id CHITCHATS_ACCESS_TOKEN=your_access_token ``

Usage

Claude Code (CLI)

Add the MCP server using the Claude Code CLI (replace the path and credentials):

claude mcp add chitchats -s user \
  -e CHITCHATS_CLIENT_ID=your_client_id \
  -e CHITCHATS_ACCESS_TOKEN=your_access_token \
  -- node <ABSOLUTE_PATH_TO>/chitchats-mcp/dist/index.js

Example with real path: ``bash claude mcp add chitchats -s user \ -e CHITCHATS_CLIENT_ID=abc123 \ -e CHITCHATS_ACCESS_TOKEN=sk_live_xxx \ -- node /Users/jane/projects/chitchats-mcp/dist/index.js ``

Or manually add to your settings file (~/.claude/settings.json):

{
  "mcpServers": {
    "chitchats": {
      "command": "node",
      "args": ["<ABSOLUTE_PATH_TO>/chitchats-mcp/dist/index.js"],
      "env": {
        "CHITCHATS_CLIENT_ID": "your_client_id",
        "CHITCHATS_ACCESS_TOKEN": "your_access_token"
      }
    }
  }
}

Scopes:

  • -s user - Available in all projects (recommended)
  • -s project - Only in current project (adds to .claude/settings.json)

Verify the server is connected: ``bash claude mcp list ``

Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "chitchats": {
      "command": "node",
      "args": ["<ABSOLUTE_PATH_TO>/chitchats-mcp/dist/index.js"],
      "env": {
        "CHITCHATS_CLIENT_ID": "your_client_id",
        "CHITCHATS_ACCESS_TOKEN": "your_access_token"
      }
    }
  }
}

Note: Replace <ABSOLUTE_PATH_TO> with the actual path where you cloned the repo (e.g., /Users/jane/projects or C:\Users\Jane\projects).

Restart Claude Desktop after adding the configuration.

Available Tools

| Tool | Description | |------|-------------| | chitchats_list_shipments | List/search shipments with filters | | chitchats_get_shipment | Get full shipment details | | chitchats_get_rates | Get available shipping rates | | chitchats_get_labels | Get label download URLs | | chitchats_get_line_items | Get HS codes, SKUs, manufacturer info | | chitchats_create_shipment | Create a new shipment | | chitchats_delete_shipment | Delete an unpaid shipment | | chitchats_buy_postage | Purchase postage | | chitchats_refund_shipment | Request a refund | | chitchats_refresh_rates | Refresh rate quotes | | chitchats_count_shipments | Count shipments by status | | chitchats_list_batches | List batches | | chitchats_create_batch | Create a batch | | chitchats_get_batch | Get batch details | | chitchats_delete_batch | Delete an empty batch | | chitchats_add_to_batch | Add shipments to a batch | | chitchats_remove_from_batch | Remove shipments from batches | | chitchats_count_batches | Count batches | | chitchats_list_returns | List return shipments | | chitchats_track_shipment | Get tracking information |

Example Queries

"What did I pay for shipping on order #1234?"
"Show me the HS codes for my recent shipments"
"What shipping options are available to California?"
"Get the label for shipment ABC123"
"List all delivered shipments from last month"

Data Available

Shipment Details

  • Order info (order_id, store platform)
  • Recipient (name, address, phone, email)
  • Package (dimensions, weight, declared value)
  • Costs (postage, tariff, broker fee, taxes)
  • Labels (PNG, PDF, ZPL URLs)
  • Tracking (carrier, tracking number, status)

Line Items

  • HS tariff codes
  • SKU codes
  • Country of origin
  • Manufacturer details

Rates

  • All carrier options
  • Cost breakdowns
  • Delivery time estimates

API Reference

This MCP server wraps the Chit Chats API v1.

Rate Limits: 2,000 requests per 5-minute window

Sandbox: Use https://staging.chitchats.com for testing (test card: 4242 4242 4242 4242)

Development

npm install          # Install dependencies
npm run build        # Compile TypeScript
npm run dev          # Build and run

See CONTRIBUTING.md for development guidelines.

License

MIT License - see LICENSE for details.

Links

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.