Step 1: Get Your Credentials
After signing up, you'll receive:
- Your unique MCP server URL
- API credentials for your organization
- White-label configuration options
Step 2: Configure Your First Tool
// Example: Creating a simple "list customers" tool
{
"name": "list_customers",
"description": "List customers with optional filters",
"parameters": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": ["active", "inactive", "all"],
"description": "Filter by customer status"
},
"limit": {
"type": "number",
"description": "Maximum number of results"
}
}
}
}
Step 3: Test with Claude
Your users can immediately start using natural language: