Terramcp MCP Server

A Model Context Protocol server that allows LLMs to configure the [TerraAPI dashboard](https://dashboard.tryterra.co/).

Local serverstdioPython

What is the Terramcp MCP server?

If you want an AI assistant working directly with Terramcp, the terramcp mcp server is the bridge. A Model Context Protocol server that allows LLMs to configure the TerraAPI dashboard.

What Terramcp does

A Model Context Protocol server that allows LLMs to configure the TerraAPI dashboard.

Tools it exposes

Once connected, the assistant can call these 3 tools directly:

  • Description — Get list of available integrations
  • Parameters — None
  • Quickstart — The Quickstart tool exposed by this server

Installing the terramcp mcp server

The server is distributed via npm as @modelcontextprotocol/inspector, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 2 environment variables: TERRA_API_KEY, TERRA_DEV_ID. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Terramcp sits in that group, and the shape of its toolset — Description, Parameters, Quickstart — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by tryterra, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the terramcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
DescriptionGet list of available [integrations](https://docs.tryterra.co/reference/health-and-fitness-api/core-concepts#source-provider-integration).
ParametersNone
QuickstartThe Quickstart tool exposed by this server.

How to install the Terramcp MCP server

{
  "mcpServers": {
    "terramcp": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/inspector"],
      "env": {
        "TERRA_API_KEY": "your-value",
        "TERRA_DEV_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
TERRA_API_KEYCredential the server authenticates with.Yes
TERRA_DEV_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Terramcp to Description.
  • Use Terramcp to Parameters.
  • Use Terramcp to Quickstart.

Frequently asked questions

It connects Terramcp to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Description, Parameters, Quickstart) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Terramcp directly.