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

orderful

v1.0.1

Published

MCP server for the Orderful EDI API — exposes Orderful's trading-partner, transaction, delivery, and conversion endpoints as MCP tools over stdio or HTTP.

Readme

orderful-mcp

An MCP (Model Context Protocol) server for the Orderful EDI API. Brings Orderful's trading-partner, transaction, delivery, and conversion capabilities into Claude and any other MCP-compatible AI client — so you can manage EDI workflows in natural language.

What you can do

With this server connected, your AI assistant can:

  • List, fetch, create, upload, and send EDI transactions
  • Inspect transaction messages and validation errors
  • Approve, fail, and poll deliveries
  • Manage acknowledgments (functional ACKs / 997)
  • Search trading partners and create trading requests
  • Set up AS2 and SFTP (inbound/outbound) communication channels
  • Convert data between EDI and JSON
  • Generate shipping labels
  • Manage document relationships and attachments
  • Query your organization, relationships, and polling buckets

Installation

Claude Code

claude mcp add orderful npx orderful your-orderful-api-key

Claude Desktop (and other MCP clients)

Add to your client's MCP config:

{
  "mcpServers": {
    "orderful": {
      "command": "npx",
      "args": ["-y", "orderful", "your-orderful-api-key"]
    }
  }
}

Restart the client and the Orderful tools will be available.

Manual / global install

npm install -g orderful
orderful your-orderful-api-key

Getting an API key

Generate an API key from your Orderful dashboard under Settings → API Keys. Pass it as the first argument to the orderful command.

Tools

| Category | Tools | | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Organization | get-organization | | Transactions | list-transactions, get-transaction, get-transaction-message, get-transaction-validations, upload-transaction, create-transaction, send-transaction | | Polling | get-polling-bucket | | Deliveries | get-delivery, approve-delivery, fail-delivery | | Relationships | list-relationships | | Acknowledgments | create-acknowledgment, get-acknowledgment | | Attachments | get-attachment | | Conversion | convert-data | | Labels | generate-label | | Trading Partners | search-trading-partner, create-trading-request | | Communication Channels | create-as2-channel, create-sftp-inbound-channel, create-sftp-outbound-channel, list-communication-channels | | Document Relationships | update-document-relationship |

Example prompts

Once installed, try asking your assistant:

  • "List the last 10 transactions for partner X"
  • "Convert this 850 EDI document to JSON"
  • "Create an SFTP outbound channel for our new trading partner"
  • "Show me all failed deliveries from this week and approve the ones blocked on validation Y"
  • "Generate a shipping label for delivery 12345"

Requirements

  • Node.js 18+
  • An Orderful API key

Development

git clone <repo>
cd orderful
pnpm install
pnpm dev      # tsx watch mode
pnpm build    # compile to dist/
pnpm start    # run compiled output

License

MIT