MCP API Documentation

White-Label Integration Guide

Overview

The Velvet Glove MCP (Model Context Protocol) server enables your users to control your application through natural language in Claude, ChatGPT, and other AI assistants.

What's Included:
  • Production-ready MCP server hosted on enterprise infrastructure
  • White-label portal for your customers
  • Comprehensive tool library for your API
  • Usage analytics and monitoring
  • Ongoing updates and maintenance

Authentication

Your MCP server uses secure token-based authentication that integrates with your existing auth system.

Configuration Example
{
  "mcpServers": {
    "your-app-name": {
      "command": "npx",
      "args": ["@your-company/mcp-server"],
      "env": {
        "API_TOKEN": "$YOUR_API_TOKEN",
        "API_ENDPOINT": "https://api.your-app.com"
      }
    }
  }
}

Quick Start

Get your users connected in minutes:

  1. Install Claude Desktop

    Download from claude.ai/download

  2. Configure MCP

    Add your MCP server to Claude's configuration file

  3. Authenticate

    Enter your API credentials when prompted

  4. Start Using Natural Language

    Your users can now control your app through Claude!

List Records Tool

Enables users to retrieve records using natural language queries.

User Says:

"Show me all customers from New York who signed up last month"

MCP Translates To:

{
  "tool": "list_records",
  "parameters": {
    "table": "customers",
    "filters": {
      "city": "New York",
      "created_date": {
        "gte": "2025-01-01",
        "lte": "2025-01-31"
      }
    }
  }
}

Create Record Tool

Allows creation of new records through conversational commands.

User Says:

"Create a new customer for Acme Corp with email john@acme.com"

MCP Translates To:

{
  "tool": "create_record",
  "parameters": {
    "table": "customers",
    "data": {
      "company_name": "Acme Corp",
      "email": "john@acme.com",
      "created_date": "2025-01-15"
    }
  }
}

White-Label Branding

Customize every aspect of the MCP experience to match your brand:

🎨 Visual Identity

  • Your logo and colors
  • Custom landing page
  • Branded documentation

📝 Messaging

  • Custom tool descriptions
  • Your terminology
  • Tailored examples

🔗 Distribution

  • Your npm package name
  • Custom installation URL
  • Private or public access

Analytics Dashboard

Track usage and optimize your MCP integration:

Analytics Dashboard Preview

Usage Metrics

Track API calls, active users, and popular commands

Performance

Monitor response times and error rates

User Journey

Understand how users interact with your MCP tools

Ready to Enable AI for Your Platform?

Get your white-label MCP server deployed in days, not months.