MCP HubMCP Hub
tembo-io

mcp-server-tembo

by: tembo-io

MCP server for Tembo Cloud's platform API

8created 04/02/2025
Visit
API
Cloud

📌Overview

Purpose: The Tembo MCP Server provides an interface for the Tembo Cloud platform API, facilitating interactions and operations within the cloud environment.

Overview: This framework allows developers to integrate and utilize the capabilities of the Tembo Cloud service effectively, leveraging a simplified setup process and a local development environment. It is designed to work seamlessly with Claude Desktop.

Key Features:

  • Easy Installation: Quickly install the MCP server using Smithery, providing an automated setup for developers and reducing initial configuration time.

  • Local Development Support: The framework allows users to clone the repository for local testing and development, ensuring flexibility and control over their environment.


Tembo MCP Server

An MCP server for the Tembo Cloud platform API.

Installation

Installing via Smithery

To install Tembo Cloud API for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @tembo-io/mcp-server-tembo --client claude

Locally

  1. Clone this repo
git clone https://github.com/tembo-io/mcp-server-tembo.git
  1. Download Claude Desktop from https://www.anthropic.com/products/claude-3-opus-desktop

  2. Load the below Tembo MCP server JSON config into Claude Desktop (open Claude Desktop > click settings > developer)

Note: You will need to generate an API key for Tembo Cloud (see https://tembo.io/docs/development/api)

{
  "mcpServers": {
    "mcp-server-tembo": {
      "command": "node",
      "env": {
        "TEMBO_API_KEY": "your_tembo_api_key"
      },
      "args": ["/absolute/path/to/cloned/repo/mcp-server-tembo/dist/index.js"]
    }
  }
}

Hosted version

Coming soon.

Development

Build the project:

pnpm run build

Run the server:

node index.js