hs-code-classifier-mcp 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/README.md +45 -0
  3. package/package.json +14 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.9] - 2026-06-02
4
+
5
+ ### Fixed
6
+ - fix: IP extraction fixed for Cloudflare proxy headers — free tier gate now enforces correctly
7
+
3
8
  ## [1.0.5] - 2026-04-28
4
9
 
5
10
  ### Changed
package/README.md CHANGED
@@ -41,6 +41,51 @@ Configure in `claude_desktop_config.json`:
41
41
  }
42
42
  ```
43
43
 
44
+ ## Harness Integration
45
+
46
+ Note: this server exposes tools at `/mcp` not the root URL.
47
+
48
+ ### Claude Code / Claude Desktop (.mcp.json)
49
+ ```json
50
+ {
51
+ "mcpServers": {
52
+ "hs-code-classifier": {
53
+ "type": "http",
54
+ "url": "https://hs-code-classifier-mcp-server-production.up.railway.app/mcp"
55
+ }
56
+ }
57
+ }
58
+ ```
59
+
60
+ ### LangChain (Python)
61
+ ```python
62
+ from langchain_mcp_adapters.client import MultiServerMCPClient
63
+ client = MultiServerMCPClient({
64
+ "hs-code-classifier": {
65
+ "url": "https://hs-code-classifier-mcp-server-production.up.railway.app/mcp",
66
+ "transport": "http"
67
+ }
68
+ })
69
+ tools = await client.get_tools()
70
+ ```
71
+
72
+ ### OpenAI Agents SDK (Python)
73
+ ```python
74
+ from agents import Agent, HostedMCPTool
75
+ agent = Agent(
76
+ name="Assistant",
77
+ tools=[HostedMCPTool(tool_config={
78
+ "type": "mcp",
79
+ "server_label": "hs-code-classifier",
80
+ "server_url": "https://hs-code-classifier-mcp-server-production.up.railway.app/mcp",
81
+ "require_approval": "never"
82
+ })]
83
+ )
84
+ ```
85
+
86
+ ### LangGraph
87
+ Same as LangChain above — langchain-mcp-adapters works with LangGraph natively.
88
+
44
89
  ## Pricing
45
90
 
46
91
  | Tier | Calls | Price |
package/package.json CHANGED
@@ -1,20 +1,31 @@
1
1
  {
2
2
  "name": "hs-code-classifier-mcp",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "MCP server for HS code classification and validation using official government tariff schedules",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "license": "MIT",
8
8
  "homepage": "https://kordagencies.com",
9
9
  "mcpName": "io.github.OjasKord/hs-code-classifier-mcp-server",
10
- "keywords": ["mcp", "agent", "hs-code", "customs", "tariff", "trade", "classification", "compliance"],
10
+ "keywords": [
11
+ "mcp",
12
+ "agent",
13
+ "hs-code",
14
+ "customs",
15
+ "tariff",
16
+ "trade",
17
+ "classification",
18
+ "compliance"
19
+ ],
11
20
  "scripts": {
12
21
  "start": "node dist/index.js",
13
22
  "dev": "tsx watch src/index.ts",
14
23
  "build": "tsc",
15
24
  "clean": "rm -rf dist"
16
25
  },
17
- "engines": { "node": ">=18" },
26
+ "engines": {
27
+ "node": ">=18"
28
+ },
18
29
  "dependencies": {
19
30
  "@anthropic-ai/sdk": "^0.39.0",
20
31
  "@modelcontextprotocol/sdk": "^1.6.1",