MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

T
Tempoai MCP Server
作者 @mvilanova

Model Context Protocol (MCP) server for connecting Claude and ChatGPT with the Tempo AI API.

创建于 11/26/2025
更新于 19 days ago
Repository documentation and setup instructions

Tempo AI MCP Server

Model Context Protocol (MCP) server for connecting Claude and ChatGPT with the Tempo AI API. It provides tools for authentication and data retrieval for workouts, events, and wellness data.

Tempo AI allows you to train hard without burning out. Join the beta at https://jointempo.ai/.

Quick Install

Get up and running with a single command:

Option 1: One-line installer (recommended)

curl -fsSL https://raw.githubusercontent.com/mvilanova/tempo-ai-mcp/main/install.sh | bash

This will install everything automatically and configure Claude Desktop. You'll be prompted for your API key.

Option 2: Using uvx (no installation required)

If you have uv installed:

uvx tempo-ai-mcp install

Option 3: Using pipx

pipx install tempo-ai-mcp
tempo-ai-mcp install

After installation, restart Claude Desktop and start chatting about your workouts!


Manual Setup

If you prefer manual installation, follow the steps below.

Requirements

Setup

1. Install uv (recommended)

curl -LsSf https://astral.sh/uv/install.sh | sh

2. Clone this repository

git clone https://github.com/mvilanova/tempo-ai-mcp.git
cd tempo-ai-mcp

3. Create and activate a virtual environment

# Create virtual environment with Python 3.13
uv venv --python 3.13

# Activate virtual environment
# On macOS/Linux:
source .venv/bin/activate
# On Windows:
.venv\Scripts\activate

4. Sync project dependencies

uv sync

5. Set up environment variables

Make a copy of .env.example and name it .env by running the following command:

cp .env.example .env

Then edit the .env file and set your Tempo AI API key:

API_KEY=your_tempoai_api_key_here

Getting your Tempo AI API Key

  1. Log in to your Tempo AI account at https://jointempo.ai/signin
  2. Go to Settings > Developer
  3. Generate a new API key

Updating

This project is actively developed, with new features and fixes added regularly. To stay up to date, follow these steps:

1. Pull the latest changes from main

⚠️ Make sure you don’t have uncommitted changes before running this command.

git checkout main && git pull

2. Update Python dependencies

Activate your virtual environment and sync dependencies:

source .venv/bin/activate
uv sync

Troubleshooting

If Claude Desktop fails due to configuration changes, follow these steps:

  1. Delete the existing entry in claude_desktop_config.json.
  2. Reconfigure Claude Desktop from the tempoai_mcp_server directory:
mcp install src/tempoai_mcp_server/server.py --name "TempoAI" --with-editable . --env-file .env

Usage with Claude

1. Configure Claude Desktop

To use this server with Claude Desktop, you need to add it to your Claude Desktop configuration.

  1. Run the following from the tempoai_mcp_server directory to configure Claude Desktop:
mcp install src/tempoai_mcp_server/server.py --name "TempoAI" --with-editable . --env-file .env
  1. If you open your Claude Desktop App configuration file claude_desktop_config.json, it should look like this:
{
  "mcpServers": {
    "TempoAI": {
      "command": "/Users/<USERNAME>/.cargo/bin/uv",
      "args": [
        "run",
        "--with",
        "mcp[cli]",
        "--with-editable",
        "/path/to/tempo-ai-mcp",
        "mcp",
        "run",
        "/path/to/tempo-ai-mcp/src/tempoai_mcp_server/server.py"
      ],
      "env": {
        "API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

Where /path/to/ is the path to the tempo-ai-mcp code folder in your system.

If you observe the following error messages when you open Claude Desktop, include the full path to uv in the command key in the claude_desktop_config.json configuration file. You can get the full path by running which uv in the terminal.

2025-04-28T10:21:11.462Z [info] [Tempo AI MCP Server] Initializing server...
2025-04-28T10:21:11.477Z [error] [Tempo AI MCP Server] spawn uv ENOENT
2025-04-28T10:21:11.477Z [error] [Tempo AI MCP Server] spawn uv ENOENT
2025-04-28T10:21:11.481Z [info] [Tempo AI MCP Server] Server transport closed
2025-04-28T10:21:11.481Z [info] [Tempo AI MCP Server] Client transport closed
  1. Restart Claude Desktop.

2. Use the MCP server with Claude

Once the server is running and Claude Desktop is configured, you can use the following tools to ask questions about your past and future activities, events, and wellness data.

  • get_workouts: List workouts
  • get_workout_details: Get workout details
  • get_wellness: List wellness data
  • get_events: List events
  • get_event_details: Get event details

Usage with ChatGPT

ChatGPT’s beta MCP connectors can also talk to this server over the SSE transport.

  1. Start the server in SSE mode so it exposes the /sse and /messages/ endpoints:

    export FASTMCP_HOST=127.0.0.1 FASTMCP_PORT=8765 MCP_TRANSPORT=sse FASTMCP_LOG_LEVEL=INFO
    python src/tempoai_mcp_server/server.py
    

    The startup log prints the full URLs (for example http://127.0.0.1:8765/sse). ChatGPT needs that public URL, so forward the port with a tool such as ngrok http 8765 if you are not exposing the server directly.

  2. In ChatGPT, open Settings → Features → Custom MCP Connectors and click Add. Fill in:

    • Name: TempoAI
    • MCP Server URL: https://<your-public-host>/sse
    • Authentication: leave as No authentication unless you have protected your tunnel.

    You can reuse the same ngrok http 8765 tunnel URL here; just ensure it forwards to the host/port you exported above.

  3. Save the connector and open a new chat. ChatGPT will keep the SSE connection open and POST follow-up requests to the /messages/ endpoint announced by the server. If you restart the MCP server or tunnel, rerun the SSE command and update the connector URL if it changes.

Development and testing

Install development dependencies and run the test suite with:

uv sync --all-extras
pytest -v tests

Running the server locally

To start the server manually (useful when developing or testing), run:

mcp run src/tempoai_mcp_server/server.py

License

The GNU General Public License v3.0

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/mvilanova/tempoai-mcp-server
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "mvilanova-tempoai-mcp-server": { "command": "git", "args": [ "clone", "https://github.com/mvilanova/tempoai-mcp-server" ] } } }