drio
Open app

Tembo MCP Server

Source

MCP server for Tembo Cloud's platform API

Catalog onlyCatalog onlySTDIO

Overview

Tembo MCP Server is a server designed for the Tembo Cloud platform API, enabling seamless integration and interaction with the cloud services provided by Tembo.

To use the Tembo MCP Server, you can install it via Smithery or clone the repository and configure it with your API key for Tembo Cloud.

  • Easy installation via Smithery CLI - Local setup instructions provided - Configuration for API key integration
  1. Integrating cloud services into applications using the Tembo API.
  2. Developing applications that require cloud-based data processing.
  3. Facilitating communication between local applications and the Tembo Cloud.

Add to your AI client

Use these steps to connect Tembo 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-tembo-tembo-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-tembo-tembo-io"
      ]
    }
  }
}

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-tembo-tembo-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-tembo-tembo-io"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-tembo-tembo-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-tembo-tembo-io"
      ]
    }
  }
}

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-tembo-tembo-io": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-tembo-tembo-io"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-tembo-tembo-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-tembo-tembo-io"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-tembo-tembo-io": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-tembo-tembo-io"
      ]
    }
  }
}

FAQ

How do I install the Tembo MCP Server?

You can install it using the Smithery CLI or clone the repository and follow the setup instructions.

Is there a hosted version available?

A hosted version is coming soon.

What do I need to run the server locally?

You need to clone the repo, download Claude Desktop, and configure it with your Tembo API key.