Overview
Triplewhale MCP Server is a server that implements the Model Context Protocol (MCP), allowing users to manage context between large language models (LLMs) and external systems, specifically for the Triplewhale platform.
To use the server, install it via Smithery or run it locally using Node.js with your Triplewhale API key. You can then issue natural language commands to retrieve data from Triplewhale.
- Standardized protocol for managing context between LLMs and external systems. - Supports natural language queries for data retrieval. - Easy installation and setup via Smithery or local environment.
- Querying financial metrics like net profit or ad spend.
- Analyzing user engagement and revenue data.
- Integrating with other tools and systems for enhanced data management.
Add to your AI client
Use these steps to connect Triplewhale MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-triplewhale-triple-whale": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-triplewhale-triple-whale"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-triplewhale-triple-whale": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-triplewhale-triple-whale"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-triplewhale-triple-whale": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-triplewhale-triple-whale"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-triplewhale-triple-whale": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-triplewhale-triple-whale"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-triplewhale-triple-whale": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-triplewhale-triple-whale"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-triplewhale-triple-whale": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-triplewhale-triple-whale"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is a standardized protocol designed to facilitate communication between LLMs and external systems.
Do I need an API key to use the server?
Yes, you need a Triplewhale API key to access the server functionalities.
Is there a specific Node.js version required?
Yes, Node.js version 18.0.0 or higher is required.