Welcome to Nexfinity MCP Server

Model Context Protocol API for AI Assistants

53
Available Tools
13
Categories
vca96fbd8a8b013e967de29969fef7dc348d464c7
Server Version

Authentication

All API requests (except health check) require authentication:

API Endpoints

GET /health Public
Health check endpoint. Returns server status, version, and database connectivity.
GET /tools Auth Required
List all available tools. Optional query parameter: ?category=sku to filter by category.
POST /mcp Auth Required
Execute a tool. Request body: {"tool": "tool.key", "params": {...}}

Quick Start Example

Follow these steps to get started with the MCP API:

1

Check Server Health

Verify that the MCP server is running and accessible.

curl /health
2

List Available Tools

Get a list of all available MCP tools and their categories.

curl -H "X-API-Key: your-api-key" /tools
3

Execute a Tool

Call a specific tool with parameters to get data or perform actions.

curl -X POST /mcp \ -H "Content-Type: application/json" \ -H "X-API-Key: your-api-key" \ -d '{ "tool": "sku.get_info", "params": { "partNumbers": ["ABC123", "XYZ789"], "companyId": "optional-company-id" } }'