Acme Corp/

Tools

Tools

Manage MCP and API integrations

Search tools...
Add Tool
Total Tools
18
+4
New this month
Across all integrations
HTTP Tools
12
+2
REST and GraphQL
External API connections
Code Tools
6
+2
Custom logic handlers
JavaScript and Python
Enabled
15
83%
Ready for agents
3 currently disabled

← Tools

Inventory Check
Code
inventory-check.js
1// Check warehouse stock levels
2async function execute({ sku, warehouse }) {
3 const response = await fetch(
4 `https://api.warehouse.io/v2/stock`
5 + `?sku=${sku}&loc=${warehouse}`
6 );
7
8 const data = await response.json();
9
10 return {
11 available: data.qty {> 0,
12 quantity: data.qty,
13 location: data.warehouse_name,
14 lastRestock: data.restocked_at,
15 };
16}
Test Tool
SKU-7842-BLK
us-east-1
Run Test
Success
18ms
{
"available": true,
"quantity": 247,
"location": "Newark DC",
"lastRestock": "2h ago"
}