@insnapsprakhar/hsn-classifier-mcp
v0.1.0
Published
npx launcher for HSN Classifier MCP — hosted on Cloudflare Workers. Look up Indian HSN / GST codes by product description or name
Maintainers
Readme
@insnapsprakhar/hsn-classifier-mcp
npx-installable launcher for HSN Classifier — a hosted MCP server on Cloudflare Workers.
Look up Indian HSN / GST codes by product description or name. 4,676 entries embedded; runs entirely on Cloudflare Workers.
Install / use directly
npx -y @insnapsprakhar/hsn-classifier-mcpThat's it. The package shells out to mcp-remote and points it at the hosted endpoint:
https://hsn-classifier-mcp.atlasword.workers.dev/mcpMCP client config
Cursor / Claude Desktop / Cline / Windsurf
{
"mcpServers": {
"hsn-classifier": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/hsn-classifier-mcp"]
}
}
}With a paid API key (optional)
The free tier is anonymous (~100 calls/month/IP). For higher limits, grab a key
from https://hsn-classifier-mcp.atlasword.workers.dev and pass it via env:
{
"mcpServers": {
"hsn-classifier": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/hsn-classifier-mcp", "--header", "Authorization:Bearer ${MCP_KEY}"],
"env": { "MCP_KEY": "mck_..." }
}
}
}Direct HTTP (no Node)
curl -sS -X POST https://hsn-classifier-mcp.atlasword.workers.dev/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Source
- Source repo: https://github.com/guptaprakhariitr/hsn-classifier-mcp
- All 17 MCPs: https://mcp-hub.atlasword.workers.dev
- License: MIT
