io.github.soulmaten7/potal
NPM · POTAL-MCP-SERVER · SCANNED AUG 3
Total landed cost API for cross-border commerce. 240 countries, 113M+ tariff records.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 115 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability73
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 1312 tokens (~145/item across 9 items; 9 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · potal-mcp-server
claude mcp add soulmaten7-potal -- npx -y potal-mcp-server
codex mcp add soulmaten7-potal -- npx -y potal-mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"soulmaten7-potal": {
"type": "local",
"command": [
"npx",
"-y",
"potal-mcp-server"
],
"enabled": true
}
}
} openclaw mcp add soulmaten7-potal --command npx --arg -y --arg potal-mcp-server
mcp_servers:
soulmaten7-potal:
command: "npx"
args: ["-y", "potal-mcp-server"] {
"mcpServers": {
"soulmaten7-potal": {
"command": "npx",
"args": [
"-y",
"potal-mcp-server"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +3
- Stability: unverified → 0.23 ▲ functional
- 2 Aug 26 +33
- Install scripts: pass → unverified ▼ security
- Provenance: fail → unverified ▼ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- License: pass → unverified ▼ functional
- Maintenance: pass → unverified ▼ functional
- Dependency health: unverified → partial ▲ functional
- Schema quality: unverified → excellent ▲ functional
- Licence: MIT functional
- 1 Aug 26 +12
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- License: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 31 Jul 26 −25
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 45
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
calculate_landed_cost ~317
Calculate the total landed cost for a product being shipped internationally. Returns a detailed breakdown of import duties, VAT/GST, customs fees, and the final total price the buyer will pay. Supports 240 countries and territories. Includes China CBEC tax, Mexico IEPS, Brazil cascading tax, India IGST, and processing fees for 12 countries.
| Name | Type | Req | Description |
|---|---|---|---|
| destinationCountry | string | yes | Destination country as 2-letter ISO code. Examples: US, GB, DE, CA, AU, JP, FR, KR |
| hsCode | string | — | If known, the HS Code for precise duty calculation. Example: 6109.10 (cotton t-shirts) |
| origin | string | yes | Origin country as 2-letter ISO code. Examples: CN (China), DE (Germany), JP (Japan), IT (Italy), GB (United Kingdom) |
| price | number | yes | Product price in USD. Example: 49.99 |
| productCategory | string | — | Product category for classification. Examples: electronics, apparel, footwear, accessories, food |
| productName | string | — | Name of the product for automatic HS Code classification. Examples: Cotton T-Shirt, Laptop, Running Shoes |
| shippingPrice | number | — | Shipping cost in USD. Default: 0. Example: 8.50 |
| zipcode | string | — | Destination ZIP/postal code. Recommended for US destinations to calculate state sales tax. Example: 10001 (New York), 90210 (Beverly Hills) |
No output schema declared.
No examples provided.
check_restrictions ~117
Check import restrictions for a product in a destination country. Returns prohibited items, required permits, watched items, and carrier restrictions. Essential for compliance screening before shipping.
| Name | Type | Req | Description |
|---|---|---|---|
| destinationCountry | string | yes | Destination country ISO2 code. Example: 'US', 'DE', 'JP' |
| hsCode | string | yes | HS code to check restrictions for. Example: '9302' (firearms), '3004' (pharmaceuticals) |
| productName | string | — | Product name for auto-classification if no HS code. |
No output schema declared.
No examples provided.
classify_product ~121
Classify a product into an HS (Harmonized System) code for customs. Uses AI-powered classification with keyword matching fallback. Returns HS code, description, chapter, and confidence level.
| Name | Type | Req | Description |
|---|---|---|---|
| hsCode | string | — | Known HS code to override classification. Example: '6109.10' |
| productCategory | string | — | Product category hint. Example: 'apparel', 'electronics', 'footwear' |
| productName | string | yes | Product name or description. Example: 'cotton t-shirt', 'laptop computer', 'running shoes' |
No output schema declared.
No examples provided.
compare_countries ~158
Compare Total Landed Cost across multiple destination countries for the same product. Useful for finding the cheapest import route or comparing duty rates between countries. Returns a side-by-side comparison of costs.
| Name | Type | Req | Description |
|---|---|---|---|
| destinationCountries | array | yes | List of destination countries to compare (ISO 2-letter codes, e.g. ['US', 'GB', 'DE', 'JP']) |
| hsCode | string | — | HS code (6+ digits) |
| originCountry | string | yes | Origin/export country (ISO 2-letter code, e.g. 'CN') |
| price | number | yes | Product price in USD |
| productName | string | yes | Product name/description |
| shippingPrice | number | — | Shipping cost in USD (default: 0) |
No output schema declared.
No examples provided.
generate_document ~205
Generate trade documents for a shipment: Commercial Invoice (CI), Packing List (PL), or Certificate of Origin (C/O). Returns a structured JSON document ready for export/PDF generation.
| Name | Type | Req | Description |
|---|---|---|---|
| currency | string | — | Currency code (default: USD) |
| destinationCountry | string | yes | Destination country (ISO 2-letter code, e.g. 'US') |
| documentType | string | yes | Type of trade document to generate |
| exporterName | string | yes | Exporter/seller company name |
| hsCode | string | — | HS code (6+ digits) |
| importerName | string | yes | Importer/buyer company name |
| originCountry | string | yes | Country of origin (ISO 2-letter code, e.g. 'CN') |
| productName | string | yes | Product name/description |
| quantity | number | yes | Number of units |
| unitPrice | number | yes | Price per unit in USD |
| weight | number | — | Total weight in kg |
No output schema declared.
No examples provided.
list_supported_countries ~54
Get a list of all 240 supported countries with their VAT/GST rates, average duty rates, de minimis thresholds, and currency information. Use this to check if a country is supported or to compare tax rates.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
lookup_fta ~112
Look up Free Trade Agreements between two countries. Covers 63 FTAs including USMCA, RCEP, CPTPP, KORUS, EU-UK TCA. Returns preferential duty rates if an FTA applies.
| Name | Type | Req | Description |
|---|---|---|---|
| destination | string | yes | Destination country ISO2 code. Example: 'US' |
| hsCode | string | — | HS code for product-specific FTA rate. Example: '6109.10' |
| origin | string | yes | Origin country ISO2 code. Example: 'KR' |
No output schema declared.
No examples provided.
screen_denied_party ~116
Screen a person or entity against sanctions and denied-party lists. Checks OFAC SDN, BIS Entity List, CSL, and other databases (21,301 entries from 19 sources). Essential for trade compliance.
| Name | Type | Req | Description |
|---|---|---|---|
| country | string | — | Country ISO2 code to narrow results. Example: 'CN' |
| minScore | number | — | Minimum match score 0.5-1.0. Default: 0.8 |
| name | string | yes | Person or entity name to screen. Example: 'Huawei Technologies' |
No output schema declared.
No examples provided.
screen_shipment ~112
Comprehensive shipment screening: calculates landed cost, checks restrictions, and identifies trade remedies — all in one call. Use this for a complete pre-shipment compliance and cost analysis.
| Name | Type | Req | Description |
|---|---|---|---|
| destinationCountry | string | yes | Destination country ISO2 |
| hsCode | string | — | Known HS code |
| origin | string | yes | Origin country ISO2 |
| price | number | yes | Product price in USD |
| productName | string | yes | Product name for classification |
| shippingPrice | number | — | Shipping cost in USD |
No output schema declared.
No examples provided.