MCP
When to use this API
Configuration
1. List available tools (GET)
GET)curl -X GET "https://apps.nlx.ai/c/mcp/xxxx/xxxx-en-US/tools" \
-H "nlx-api-key: YOUR_API_KEY"{
"tools": [
{
"name": "check_order_status",
"description": "Retrieves the status of a customer order",
"inputSchema": {
"type": "object",
"properties": {
"orderId": { "type": "string" }
},
"required": ["orderId"]
}
}
]
}2. Execute a tool (POST)
POST)Last updated

