MCP Server
Connect an MCP-compatible AI client to Trackee's local MCP server.
Trackee includes a local Model Context Protocol (MCP) server. It communicates with an AI client through standard input and standard output.
Current tool
| Tool | Purpose | Authentication |
|---|---|---|
api_health | Check whether the Trackee API is healthy. | None |
The tool calls GET /health. It does not read or change organization data.
Start Trackee
Start the API:
pnpm --filter @trackee/api devIn a second terminal, start the MCP server:
TRACKEE_API_URL=http://localhost:3001 \
pnpm --filter @trackee/mcp devConnect an AI client
Build the MCP package:
pnpm --filter @trackee/mcp buildAdd this stdio server entry to the AI client's MCP configuration. Replace the example repository path with the absolute path on your computer.
{
"mcpServers": {
"trackee": {
"command": "node",
"args": ["/absolute/path/to/trackee/apps/mcp/dist/index.js"],
"env": {
"TRACKEE_API_URL": "http://localhost:3001"
}
}
}
}Restart the AI client after you save the configuration.
Test the connection
Ask the AI client:
Check whether the Trackee API is healthy.
A healthy response contains:
{
"service": "api",
"status": "ok"
}