INDIVIDUAL MCP TOOL
getBacklogItem
Get a single backlog item with comments and activity Returns a backlog item together with its threaded comments (top-level comments ordered newest-first, replies ordered oldest-first) and the last 50 activity log entries.
LIVE ENDPOINT
https://mcp.arabiantraderoute.com/mcp
Connect to this endpoint to inspect the live schema for getBacklogItem and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.atr-mcp-api]
url = "https://mcp.arabiantraderoute.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"atr-mcp-api": {
"type": "http",
"url": "https://mcp.arabiantraderoute.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: atr-mcp-api
Remote MCP URL: https://mcp.arabiantraderoute.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"atr-mcp-api": {
"url": "https://mcp.arabiantraderoute.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"atr-mcp-api": {
"type": "http",
"url": "https://mcp.arabiantraderoute.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "atr-mcp-api",
"transport": "streamable-http",
"url": "https://mcp.arabiantraderoute.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
listRFQs— List all RFQs with related data Retrieves all RFQs with enriched data including assigned user, linked project, and counts of related entities (comments, attachments, suppliers, shipments, payments).createRFQ— Create a new RFQ Creates a new Request for Quotation.importLegacyRFQs— Import RFQs from legacy backend Fetches RFQs from the legacy Express backend and imports them into the PostgreSQL database.getRFQ— Get a single RFQ with all related data Retrieves a single RFQ by ID with full details including all comments (with user info), attachments (with tags), suppliers, shipments, payments, and entity counts.updateRFQ— Update an RFQ Updates an existing RFQ.deleteRFQ— Delete an RFQ Permanently deletes an RFQ and all related data (comments, attachments, suppliers, quotations, shipments, payments) via cascading deletes.updateRFQStatus— Update RFQ status Updates only the status field of an RFQ.updateRFQPriority— Update RFQ priority Updates only the priority field of an RFQ.