definite-app/definite-mcp
If you are the rightful owner of definite-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Definite API MCP Server provides a robust interface for executing SQL and Cube queries on database integrations, leveraging the Model Context Protocol (MCP) for seamless integration.
Definite API MCP Server
A Model Context Protocol (MCP) server that provides access to the Definite API for running SQL and Cube queries.
Features
- SQL Query Tool: Execute SQL queries on database integrations
- Cube Query Tool: Execute Cube queries using JSON format
- Optional Integration ID: Both tools support optional integration_id parameter (uses backend default if not provided)
Setup
-
Install dependencies:
uv add "mcp>=1.2.0" httpx python-dotenv
-
Set up environment: Create a
.env
file with your Definite API key:DEFINITE_API_KEY=your_api_key_here
Optional: Configure custom API base URL (defaults to production):
DEFINITE_API_BASE_URL=https://api.definite.app
-
Test the server:
uv run python scripts/test_mcp.py
Installation & Configuration
Option 1: Install from GitHub (Recommended)
Add this configuration to your Claude Desktop settings (~/Library/Application Support/Claude/claude_desktop_config.json
on macOS):
{
"mcpServers": {
"definite-api": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/definite-app/definite-mcp.git",
"definite-mcp"
],
"env": {
"DEFINITE_API_KEY": "your_api_key_here"
}
}
}
}
Option 2: Local Development Setup
For local development, clone the repository and use this configuration:
{
"mcpServers": {
"definite-api": {
"command": "uv",
"args": [
"--directory",
"/path/to/definite-mcp",
"run",
"python",
"definite_mcp.py"
]
}
}
}
Replace /path/to/definite-mcp
with the actual path to your cloned repository.
Claude Code CLI Configuration
For Claude Code CLI users, you can add this MCP server using the command line:
Method 1: Install from GitHub (Recommended)
claude mcp add definite-api \
--env DEFINITE_API_KEY=your_api_key_here \
-- uvx --from git+https://github.com/definite-app/definite-mcp.git definite-mcp
Method 2: Local Development
# Add from local directory
claude mcp add definite-api \
--env DEFINITE_API_KEY=your_api_key_here \
-- uv --directory /path/to/definite-mcp run python definite_mcp.py
Method 3: Different Scopes
# Project-scoped (shared with team)
claude mcp add definite-api --scope project -- uv --directory /path/to/definite-mcp run python definite_mcp.py
# User-scoped (available across all projects)
claude mcp add definite-api --scope user -- uv --directory /path/to/definite-mcp run python definite_mcp.py
MCP Management Commands
# List all configured MCP servers
claude mcp list
# Check server status
claude mcp get definite-api
# Remove the server
claude mcp remove definite-api
Verification
After adding the MCP server, you can verify it's working by running /mcp
in Claude Code - you should see "definite-api" listed as "connected".
Important: Replace /Users/mritchie712/blackbird/def-mcp/definite-mcp
with the absolute path to your project directory.
Usage
SQL Queries
Execute SQL queries on your database integrations:
# With default integration
await run_sql_query("SELECT * FROM users LIMIT 10")
# With specific integration
await run_sql_query("SELECT * FROM users LIMIT 10", "your_integration_id")
Cube Queries
Execute Cube queries using JSON format:
cube_query = {
"dimensions": [],
"filters": [],
"measures": ["hubspot_deals.win_rate"],
"timeDimensions": [{
"dimension": "hubspot_deals.close_date",
"granularity": "month"
}],
"order": [],
"limit": 2000
}
# With default integration
await run_cube_query(cube_query)
# With specific integration
await run_cube_query(cube_query, "your_integration_id")
Tools Available
-
run_sql_query
- Parameters:
sql
(required),integration_id
(optional) - Executes SQL queries on database integrations
- Parameters:
-
run_cube_query
- Parameters:
cube_query
(required dict),integration_id
(optional) - Executes Cube queries with support for dimensions, filters, measures, and time dimensions
- Parameters:
Troubleshooting
- Invalid Authorization Header: Check that your API key is correct and properly set in the
.env
file - Connection Issues: Verify that you have internet access and the Definite API is accessible
- Integration ID: If queries fail, try providing a specific
integration_id
parameter
API Key Setup
Your API key can be found in the bottom left user menu of your Definite dashboard. Your integration_id
can be found on your integration's page URL.
Environment Configuration
The MCP server supports configurable API base URLs through environment variables:
DEFINITE_API_KEY
: Your API key from the Definite dashboard (required)DEFINITE_API_BASE_URL
: The API base URL (optional, defaults to production)
Example:
# Custom API endpoint (optional)
DEFINITE_API_BASE_URL=https://api.definite.app
Test Results
✅ API is working! Both SQL and Cube queries are successfully executing against the Definite API.