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

@iflow-mcp/bfrs-shiprocket-mcp

v1.0.0

Published

This is a Model Context Protocol (MCP) server for Shiprocket.

Readme

🚀 Shiprocket MCP Integration

This is a Model Context Protocol (MCP) server for Shiprocket.

With this, you can:

  • Check best and fastest serviceable courier partners(based on city or pincodes) and their shipping rates
  • Create, update (single or bulk), and cancel orders
  • Ship orders directly
  • Track orders using the AWB number, Shiprocket Order ID, or Source Order ID

It connects to your personal Shiprocket account directly via Email and password.

Here's an example of what you can do when it's connected to Claude.


🛠️ Prerequisites

  • Node (version > 20.0.0 and < 23.0.0)
  • Claude Desktop app (or Cursor)

🛠️ Installation

1. Clone the Repository

git clone https://github.com/bfrs/shiprocket-mcp.git
cd shiprocket-mcp

2. Install Dependencies using the existing package.json

# Install dependencies
npm install

# Build the binary
npm run build

3. Connect to MCP server

Add the following to your claude_desktop_config.json or mcp.json

{
 "mcpServers": {
   "Shiprocket": {
     "command": "npm",
      "args": [
        "--prefix",
        "{{PATH_TO_SRC}}",
        "start",
        "--silent"
      ],
      "env": {
       "SELLER_EMAIL":"<Your Shiprocket Email>",
       "SELLER_PASSWORD":"<Your Shiprocket password>"
     }
   }
 }
}

For Claude, save this as claude_desktop_config.json in your Claude Desktop configuration directory at:

~/Library/Application Support/Claude/claude_desktop_config.json

For Cursor, save this as mcp.json in your Cursor configuration directory at:

~/.cursor/mcp.json

Open Claude Desktop and you should now see Shiprocket as an available integration.

Or restart Cursor.

MCP Tools

Clients (Claude or Cursor) can access the following tools to interact with Shiprocket:

  • estimated_date_of_delivery - To know more about the date of delivery for any location.
  • shipping_rate_calculator - To check shippable couriers with their rates and coverage.
  • list_pickup_addresses - List all the configured pickup addresses.
  • order_list - Fetch recently created orders
  • order_track - Track any order to know more about the current status of the order.
  • order_ship - Ship an order to any serviceable courier partner based on the configured rules or specifying names.
  • order_pickup_schedule - Schedule pickup of an order
  • generate_shipment_label - Generate label of an order or shipment
  • order_cancel - Cancel an order by providing order ID
  • order_create - Create an order

Examples:

  • "Show me the fastest serviceable courier from Delhi to Banglore"
  • "What are the courier options and delivery times from Delhi to Bangalore for a 0.5 KG COD package?"
  • "Where is my order?"
  • "How long will it take to deliver a package to Mumbai?"