Quick Start Guide: MCP Server
Quick Start Guide: MCP Server
This guide will help you connect the Salescaling MCP server with your favorite client in less than 5 minutes.
Step 1: Get Your API Key
- Log in to app.salescaling.com
- Go to Settings > API Keys
- Click on "Create New API Key"
- Give it a name (e.g., "MCP Claude Desktop")
- Copy the key
⚠️ Important: Save the key in a safe place, it is only shown once.
Step 2: Configure Your Client
Claude Desktop (Recommended)
macOS:
- Open Terminal
- Execute:
bash
nano ~/Library/Application\ Support/Claude/claude_desktop_config.json
- Paste this configuration (replace
TU_API_KEY):
json
{
"mcpServers": {
"salescaling": {
"url": "https://api.salescaling.com/api/v1/mcp",
"headers": {
"X-API-Key": "TU_API_KEY"
}
}
}
}
- Save (
Ctrl+O,Enter,Ctrl+X) - Restart Claude Desktop
Windows:
- Open File Explorer
- Navigate to:
%APPDATA%\Claude\ - Open
claude_desktop_config.jsonwith Notepad - Paste the configuration (replace
TU_API_KEY) - Save and restart Claude Desktop
Claude or other clients with OAuth (without API Key in the file)
If your client uses OAuth Clients instead of an API key (for example, Claude with browser login):
- In Salescaling: Settings → OAuth Clients and create a client.
- Add Claude's URL as Redirect URI:
https://claude.ai/api/mcp/auth_callback - Configure the
oauthblock of the MCP client withauthorizationUrl,tokenUrl,clientId, andscopes.
The detailed guide, URL table, and JSON example are in MCP Server → MCP Connection via OAuth Clients.
Cursor IDE
- Open Cursor
- Go to Settings (
Cmd/Ctrl + ,) - Search for "MCP"
- Add:
json
{
"mcp.servers": {
"salescaling": {
"url": "https://api.salescaling.com/api/v1/mcp",
"headers": {
"X-API-Key": "TU_API_KEY"
}
}
}
}
- Restart Cursor
Step 3: Verify the Connection
In Claude Desktop
- Open Claude Desktop
- Look for the tools icon (🔧) in the sidebar
- You should see "salescaling" listed
- Click to see the 11 available tools
In Cursor
- Open the Cursor chat
- Type:
@salescaling - You should see the server available
Step 4: Test a Search
Try this prompt in Claude or Cursor:
text
Busca mis reuniones de la última semana
Claude/Cursor should:
- Automatically use the
list_meetingstool - Show your recent meetings
- Allow you to ask follow-up questions
Prompt Examples
Once connected, try these prompts:
Basic Search
text
Busca reuniones sobre "pricing" del último mes
Meeting Analysis
text
Dame el resumen de la reunión con ID abc-123
Aggregate Analysis
text
Analiza todas mis reuniones de diciembre y dame insights sobre:
- Temas más discutidos
- Objeciones comunes
- Oportunidades identificadas
Full Transcript
text
Muéstrame la transcripción completa de la última reunión con el cliente XYZ
Advanced Search
text
Busca reuniones donde se mencionó "implementación" o "timeline"
en las transcripciones de los últimos 3 meses
Troubleshooting
❌ "Cannot find salescaling server"
Solution:
- Verify that the configuration file is in the correct location
- Confirm that the JSON is valid (no extra commas)
- Completely restart the client
- Check the client logs for errors
❌ "Unauthorized - missing or invalid API key"
Solution:
- Verify that you copied the complete API key
- Confirm that the key has not expired
- Check for no extra spaces at the beginning or end
- Generate a new key if necessary
❌ "Cannot find the configuration file"
macOS:
bash
# Crea el directorio si no existe
mkdir -p ~/Library/Application\ Support/Claude/
# Crea el archivo
touch ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows:
powershell
# Crea el directorio si no existe
New-Item -ItemType Directory -Force -Path "$env:APPDATA\Claude"
# Crea el archivo
New-Item -ItemType File -Force -Path "$env:APPDATA\Claude\claude_desktop_config.json"
❌ "Responses are too long"
Solution: Explicitly ask for smaller limits:
text
Busca reuniones sobre pricing (máximo 5 resultados)
Or for transcripts:
text
Dame las primeras 50 oraciones de la transcripción de la reunión abc-123
Next Steps
- 📖 Read the complete MCP server documentation
- 🔧 Explore the 11 available tools
- 💡 Learn about advanced use cases
- 🔐 Review security best practices
Need Help?
- Email: support@salescaling.com
- API Documentation: https://api.salescaling.com/api/docs
- Slack: Join the community
Estimated time: 5 minutes ⏱️
Difficulty: Beginner 🟢