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.
- 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.
{
"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:
-
Install Claude Desktop
Download from claude.ai/download
-
Configure MCP
Add your MCP server to Claude's configuration file
-
Authenticate
Enter your API credentials when prompted
-
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:
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:
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:
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