An Agentic AI platform for customs classification, tariff calculation, trade compliance, and deep-tier supply chain risk intelligence.
π’ Launch, Roadmap & Live Agent Demos
π Explore all SupplyGraph AI Agents
Autonomous, auditable, and real-time supply-chain intelligence that maps how companies, products, and geographies connect across the global economy β enabling visibility, resilience, and efficiency without requiring any customer-provided data.
Keywords: AI-powered supply chain intelligence, tariff calculation, HTS classification, trade compliance, multi-tier supply chain risk analysis, A2A agent platform
This repository contains the official documentation of SupplyGraph AI and is structured as follows:
π Getting Started β Setup, authentication and first request
π docs/getting-started.md
π€ A2A / MCP Protocol β Agent-to-Agent interface & interoperability
π docs/a2a.md
π€ Agent Library Overview
π https://github.com/SupplyGraphAI/supplygraph-ai/blob/main/agents/index.md
π¦ Developer SDK β Programmatic access for integration
π https://github.com/SupplyGraphAI/supplygraphai_a2a_sdk
π Live Documentation Site (GitHub Pages) β Fast-loading, shareable, searchable docs
π https://supplygraphai.github.io/supplygraph-ai/
π Official Website β Product, use cases & demo
π https://www.supplygraph.ai
- Introduction
- What We Do
- Why It Matters
- How It Works
- Two Groups of AI Agents
- Integration & Developer Experience
- Who Uses SupplyGraph AI
- Why Weβre Different
- Real Results Across Industries
- Security & Privacy
- About SupplyGraph AI
- Contact
SupplyGraph AI delivers real-time, AI-powered global supply graph intelligence for multi-tier supply chain risk analysis, tariff calculation, HTS classification, and trade compliance β an AI-native risk infrastructure that reveals multi-hop visibility with auditable analytics for enterprises, financial institutions, and public stakeholders.
We map how products, companies, and geographies connect across extended supply networks, surfacing risks and validated alternatives in real time.
Our AI-native graph infrastructure powers multi-hop visibility so teams can see, simulate, and secure complex value chains without adding tooling overhead.
Legacy solutions rarely reach beyond Tier 1β2 and depend heavily on static, probabilistic data or user-uploaded supplier lists.
SupplyGraph AI eliminates these blind spots, exposing 10+ tiers of verified enterprise-product relationships with explainable, source-linked evidence.
We maintain a continuously updated graph of hundreds of millions of enterprise records and millions of product nodes.
Each relationship is tied to live signals and an auditable evidence chain.
β No customer data required β our enterprise-centric design removes the need for supplier uploads, minimizing disclosure risk while accelerating time-to-value.
- Customs Classification Agent β Maps products to correct HS/HTS codes
- U.S. Tariff Calculation Agent β Calculates U.S. duty rates and additional tariffs
- Due Diligence Agent β Generates structured company intelligence
- Corporate Exception Agent β Real-time automated corporate exception monitoring
π Full agent descriptions here:
https://github.com/SupplyGraphAI/supplygraph-ai/blob/main/agents/index.md
π Details & demos available in the Agent Hub:
https://github.com/SupplyGraphAI/supplygraph-ai/blob/main/agents/index.md
Designed for fast, standards-based integration using A2A and MCP.
from supplygraphai_a2a_sdk import AgentClient
import time
client = AgentClient(api_key="YOUR_API_KEY")
run_response = client.run(
agent_id="tariff_calc",
text="Lithium-ion batteries for electric vehicles manufactured in China"
)
task_id = run_response.get("task_id")
print(f"Task submitted: {task_id}")
status = "PENDING"
while status not in ("COMPLETED", "FAILED"):
time.sleep(3)
status_response = client.status(
agent_id="tariff_calc",
task_id=task_id
)
status = status_response.get("status")
print("Current status:", status)
if status == "COMPLETED":
result = client.results(
agent_id="tariff_calc",
task_id=task_id
)
print("Final result:")
print(result)
else:
print("Task failed or cancelled.")- Manufacturing & Automotive companies
- Energy, Electronics & Industrial groups
- Retail & Consumer Brands
- Consulting & Risk Advisory firms
- Financial Institutions & Investors
- Public Sector & Research organizations
- 10+ tier visibility
- Real-time updates
- Auditable evidence
- Zero customer data required
- Explainable, policy-aware AI
Supply Chain β Reduced tariff filing time from hours to minutes
Consulting β Cut analysis time by up to 90%
Finance β Extended visibility from Tier-3 to Tier-10
Research β Enabled empirical network modeling
Government β Supported policy and risk simulations
No customer data is required or stored.
All output is backed by a verifiable evidence chain.
SupplyGraph AI redefines how the world understands and secures supply chains.
Through autonomous graph intelligence, organizations can predict risk and act with confidence.
info@supplygraph.ai
https://www.supplygraph.ai
Getting Started
https://github.com/SupplyGraphAI/supplygraph-ai/blob/main/docs/getting-started.md
Agent Hub
https://github.com/SupplyGraphAI/supplygraph-ai/blob/main/agents/index.md
Python A2A SDK
https://github.com/SupplyGraphAI/supplygraphai_a2a_sdk
Website
https://www.supplygraph.ai
Β© 2025 SupplyGraph AI, Inc. All rights reserved.
