home / mcp / tendem mcp server
Provides Tendem API access and task routing for AI agents through MCP clients using a Tendem API key.
Configuration
View docs{
"mcpServers": {
"toloka-tendem-mcp": {
"command": "uvx",
"args": [
"tendem-mcp"
],
"env": {
"TENDEM_API_KEY": "<your-api-key>"
}
}
}
}You can run Tendem’s MCP server to connect your AI agents with Tendem’s task platform, enabling automated task execution through your preferred MCP client. This server accepts your Tendem API key and exposes a lightweight interface for agents to request actions and receive results.
Use the Tendem MCP server with your MCP client to route tasks to Tendem. You will provide your API key to authorize requests, then start the MCP server from your client’s integration flow. Your agent can issue tasks, and Tendem will process them through the configured MCP interface.
Prerequisites: you need a Tendem account and an API key. You will also use an MCP client integration that supports stdio MCPs (for example uvx) to launch the Tendem MCP server.
Step 1: Obtain your API key. Log into your Tendem account and visit the API tokens page to generate or view your token.
Step 2: Add the Tendem MCP server configuration to your MCP client. Use one of the following examples depending on your client.
claude mcp add tendem -e TENDEM_API_KEY=<your-api-key> -- uvx tendem-mcpConfigure the Tendem MCP server with a single stdio entry that uses the uvx launcher and the tendem-mcp subcommand. You must provide the TENDEM_API_KEY environment variable in each configuration.
{
"mcpServers": {
"tendem": {
"type": "stdio",
"command": "uvx",
"args": ["tendem-mcp"],
"env": {
"TENDEM_API_KEY": "<your-api-key>"
}
}
}
}If you are using Claude Desktop, you add the following to your claude_desktop_config.json to register the Tendem MCP server.
{
"mcpServers": {
"tendem": {
"command": "uvx",
"args": ["tendem-mcp"],
"env": {
"TENDEM_API_KEY": "<your-api-key>"
}
}
}
}OpenAI Codex users can add Tendem in a similar fashion by including the environment key in the command line.
codex mcp add tendem --env TENDEM_API_KEY=<your-api-key> -- uvx tendem-mcpOpenCode users can register Tendem MCP with a local mcp configuration.
{
"mcp": {
"tendem": {
"type": "local",
"command": ["uvx", "tendem-mcp"],
"environment": {
"TENDEM_API_KEY": "<your-api-key>"
}
}
}
}