mcp-hs-code-query
Verified Safeby qinxiushan
Overview
Queries harmonized system (HS) codes for products from multiple web sources, offering intelligent search, semantic matching, and detailed customs declaration information for AI agent integration.
Installation
uvx mcp-hs-code-queryEnvironment Variables
- NGROK_AUTH_TOKEN
- API_HOST
- API_PORT
Security Notes
The core server logic implements good input validation via Pydantic models and controls network requests to predefined target domains, mitigating common injection and SSRF risks. However, the FastAPI service (api_server.py) uses `allow_origins=["*"]` for CORS, which is overly permissive for public-facing APIs and could be a concern if not explicitly intended for broad access by non-browser clients. External AI models are loaded from HuggingFace, introducing a supply chain risk if the model itself is compromised.
Similar Servers
octocode
An intelligent code indexer and semantic search engine that builds knowledge graphs of codebases, providing AI-powered assistance for development tasks like natural language search, smart commits, and code reviews, with local-first and multi-language support.
cov-loupe
Provides an MCP server, CLI, and Ruby library for analyzing SimpleCov test coverage data, primarily to enable AI assistants to query and report on codebase coverage.
code-sage
A high-performance MCP server for semantic code search, analyzing codebases using AST-based chunking and providing hybrid keyword and vector embeddings search capabilities for AI clients.
devtools-debugger-mcp
Facilitate debugging of Node.js applications by exposing Chrome DevTools Protocol capabilities via an MCP server.