iQStep exposes its full data layer as an MCP server. Connect Claude Desktop, Microsoft Copilot, Cursor, or any MCP-compatible tool — and let your AI ask real questions about your inventory, forecasts, and alerts.
Your AI reads live data directly — not a screenshot or export you made yesterday.
Every MCP request is authenticated by your API key. No data leaks between organizations.
Claude Desktop, Cursor, Continue.dev, Microsoft Copilot Studio, and any client supporting MCP 2024-11-05.
From zero to your AI reading your supply chain in under 5 minutes.
Go to Settings → API Keys and create a key with the mcp:read scope (add mcp:write if you want your AI to create replenishment orders).
Open API KeysPaste the config snippet for your client (see below). Use your API key as the Bearer token.
Try: "What products are below reorder point in Nairobi?" or "Show me the demand forecast for product SKU-001 over the next 30 days."
{
"mcpServers": {
"iqstep": {
"url": "https://app.iqstep.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}# cursor/.cursor/mcp.json
{
"iqstep": {
"url": "https://app.iqstep.com/api/mcp",
"auth": {
"type": "bearer",
"token": "YOUR_API_KEY"
}
}
}// .continue/config.json
{
"mcpServers": [
{
"name": "iQStep",
"transport": {
"type": "http",
"url": "https://app.iqstep.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
]
}These are the functions your AI can call on your iQStep data.
get_demand_forecastRetrieve demand forecasts for any product or outlet, with date range filtering.
get_inventory_statusCheck real-time inventory levels, identify items below reorder point.
get_alertsList active supply chain alerts filtered by severity or category.
get_outlet_dataLook up outlet metadata including type, region, and data quality.
get_kpisGet a real-time dashboard summary: products, alerts, pending orders.
create_replenishment_orderGenerate a replenishment recommendation (requires write scope).
Resources are contextual data your AI can read at any time — catalog listings, KPI summaries, schema definitions.
iqstep://org/profileOrganization profile and plan details
iqstep://catalog/productsFull product catalog (ID, name, SKU, category)
iqstep://catalog/outletsOutlet network with location metadata
iqstep://analytics/kpi-summaryLive KPI summary refreshed on request
iqstep://schema/outlet-typesFormal + informal outlet type definitions
iqstep://schema/alert-categoriesAlert category and severity enumerations
For enterprise teams running their own AI orchestration pipelines, iQStep also supports the Google A2A protocol. Your orchestration agent can delegate supply chain tasks to iQStep's specialist agents — demand forecasting, inventory optimization, replenishment — and receive structured results asynchronously via callback.
Agent discovery
GET https://app.iqstep.com/.well-known/agent.jsonTask delegation
POST /api/a2a
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"agentType": "demand",
"input": { "query": "Rebalance stock across Nairobi depots for rainy season" },
"callbackUrl": "https://your-system.com/callbacks/iqstep"
}A2A access requires a SCALE or ENTERPRISE plan. Create an API key with the a2a:delegate scope.
Create your API key in under a minute. No configuration required on the iQStep side.
Generate an API key