MCP server for Tendem, AI + Human Agent to get tasks done.
To manage API keys, log into your Tendem account and visit https://agent.tendem.ai/tokens
- Download the latest
tendem-mcp.mcpbfrom Releases - Double-click the file or drag it into Claude Desktop
- Enter your API key when prompted (get one at https://agent.tendem.ai/tokens)
cd mcpb
npx @anthropic-ai/mcpb pack . tendem-mcp.mcpbclaude mcp add tendem -e TENDEM_API_KEY=<your-api-key> -- uvx tendem-mcpAdd to claude_desktop_config.json:
{
"mcpServers": {
"tendem": {
"command": "uvx",
"args": ["tendem-mcp"],
"env": {
"TENDEM_API_KEY": "<your-api-key>"
}
}
}
}Config location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
codex mcp add tendem --env TENDEM_API_KEY=<your-api-key> -- uvx tendem-mcpAdd to opencode.json:
{
"mcp": {
"tendem": {
"type": "local",
"command": ["uvx", "tendem-mcp"],
"environment": {
"TENDEM_API_KEY": "<your-api-key>"
}
}
}
}