TimescaleDB MCP Server

TimescaleDB MCP Server

Enables AI assistants to interact with TimescaleDB time-series databases through async operations, providing tools for querying, schema introspection, hypertable analysis, and time-bucketed data aggregation.

Category
Visit Server

README

TimescaleDB MCP Server

A Python-based Model Context Protocol (MCP) server for TimescaleDB that enables AI assistants to interact with your time-series database.

Features

  • Async Database Operations: Built on asyncpg for high-performance async database access
  • Connection Pooling: Efficient connection pool management with configurable pool sizes
  • MCP Resources: Schema introspection via MCP resources for tables and hypertables
  • MCP Prompts: Pre-built prompts for common operations (query time-series, analyze hypertables, explore schema)
  • SQL Injection Prevention: Parameterized queries throughout for security
  • Comprehensive Error Handling: Custom exceptions with clear error messages
  • Type Safety: Full type hints and TypedDict support
  • 6 MCP Tools: Execute queries, list/describe tables and hypertables, query time-series data
  • Structured Logging: Comprehensive logging for debugging and monitoring

Installation

From PyPI

pip install timescaledb-mcp

Or using uv (faster):

uv pip install timescaledb-mcp

The package is available on PyPI.

From Source

  1. Clone this repository:
git clone https://github.com/brunoprela/timescaledb-mcp.git
cd timescaledb-mcp
  1. Install using pip:
pip install -e .

Or using uv:

uv pip install -e .

For development with additional tools:

pip install -e ".[dev]"
# or
uv pip install -e ".[dev]"

Configuration

Configuration is managed via environment variables with the TIMESCALEDB_ prefix.

Required Settings

TIMESCALEDB_HOST=localhost
TIMESCALEDB_PORT=5432
TIMESCALEDB_DATABASE=your_database
TIMESCALEDB_USER=your_user
TIMESCALEDB_PASSWORD=your_password

Optional Settings

TIMESCALEDB_MIN_POOL_SIZE=1        # Minimum connection pool size (default: 1)
TIMESCALEDB_MAX_POOL_SIZE=10       # Maximum connection pool size (default: 10)
TIMESCALEDB_QUERY_TIMEOUT=30.0     # Query timeout in seconds (default: None)

You can set these as environment variables or create a .env file in the project root.

Usage

Running the Server

After installation, you can run the MCP server in several ways:

Using the console script:

timescaledb-mcp

As a Python module:

python -m timescaledb_mcp

The server will start and be ready to accept MCP protocol requests via stdio.

MCP Client Configuration

To use this server with an MCP client (like Claude Desktop), add it to your MCP configuration.

Option 1: Using the installed console script (recommended):

{
  "mcpServers": {
    "timescaledb": {
      "command": "timescaledb-mcp",
      "env": {
        "TIMESCALEDB_HOST": "localhost",
        "TIMESCALEDB_PORT": "5432",
        "TIMESCALEDB_DATABASE": "your_database",
        "TIMESCALEDB_USER": "your_user",
        "TIMESCALEDB_PASSWORD": "your_password"
      }
    }
  }
}

Option 2: Using Python module:

{
  "mcpServers": {
    "timescaledb": {
      "command": "python",
      "args": ["-m", "timescaledb_mcp"],
      "env": {
        "TIMESCALEDB_HOST": "localhost",
        "TIMESCALEDB_PORT": "5432",
        "TIMESCALEDB_DATABASE": "your_database",
        "TIMESCALEDB_USER": "your_user",
        "TIMESCALEDB_PASSWORD": "your_password"
      }
    }
  }
}

Option 3: Using uv (if installed via uv):

{
  "mcpServers": {
    "timescaledb": {
      "command": "uv",
      "args": ["run", "timescaledb-mcp"],
      "env": {
        "TIMESCALEDB_HOST": "localhost",
        "TIMESCALEDB_PORT": "5432",
        "TIMESCALEDB_DATABASE": "your_database",
        "TIMESCALEDB_USER": "your_user",
        "TIMESCALEDB_PASSWORD": "your_password"
      }
    }
  }
}

MCP Tools

The server provides the following tools:

  • execute_query: Execute a SQL query with parameterized support and return results
  • list_tables: List all tables in the database
  • describe_table: Get detailed information about a table (columns, types, row counts)
  • list_hypertables: List all TimescaleDB hypertables
  • describe_hypertable: Get detailed information about a hypertable (dimensions, chunks, compression)
  • query_timeseries: Query time-series data with optional time-bucketing and aggregation

MCP Resources

The server exposes database schema as MCP resources:

  • Table Resources: timescaledb://table/{table_name} - Access table schemas and metadata
  • Hypertable Resources: timescaledb://hypertable/{hypertable_name} - Access hypertable schemas and metadata

Resources are automatically discovered and listed, making it easy for AI assistants to explore your database structure.

MCP Prompts

Pre-built prompts for common operations:

  • query_timeseries_data: Generate queries for time-series data retrieval
  • analyze_hypertable: Analyze hypertable structure, chunks, and performance metrics
  • explore_database_schema: Get an overview of all tables and hypertables in the database

Development

This project uses the official MCP Python SDK to implement the Model Context Protocol.

Project Structure

The project follows modern Python packaging standards with a src-layout:

timescaledb-mcp/
├── src/
│   └── timescaledb_mcp/
│       ├── __init__.py
│       ├── __main__.py
│       ├── config.py          # Configuration management (Pydantic v2)
│       ├── database.py        # Async TimescaleDB client (asyncpg)
│       ├── exceptions.py      # Custom exceptions
│       └── server.py          # MCP server with tools, resources, prompts
├── tests/                      # Pytest test suite
│   ├── conftest.py
│   ├── test_config.py
│   └── test_database.py
├── .github/
│   └── workflows/
│       └── ci.yml             # GitHub Actions CI/CD
├── pyproject.toml             # Modern Python package configuration
├── pytest.ini                 # Pytest configuration
├── requirements.txt           # Runtime dependencies
├── README.md
└── LICENSE

Development Setup

  1. Clone the repository:

    git clone https://github.com/brunoprela/timescaledb-mcp.git
    cd timescaledb-mcp
    
  2. Install in editable mode with dev dependencies:

    pip install -e ".[dev]"
    # or
    uv pip install -e ".[dev]"
    
  3. Run tests:

    make test
    # or
    uv run pytest tests/ -v
    
  4. Run tests with coverage:

    make test-cov
    # or
    uv run pytest tests/ -v --cov=timescaledb_mcp --cov-report=html
    
  5. Run all checks:

    make check
    # This runs: lint, type-check, and test
    

Testing

The test suite includes both unit tests (that don't require a database) and integration tests (that require a TimescaleDB instance).

By default, make test automatically:

  • Starts a TimescaleDB Docker container
  • Waits for it to be ready
  • Runs all tests (including database tests)
  • Stops and removes the container when done

Simply run:

make test

Or with coverage:

make test-cov

Manual testing (if you have your own TimescaleDB instance):

# Set environment variables
export TIMESCALEDB_HOST=localhost
export TIMESCALEDB_PORT=5432
export TIMESCALEDB_DATABASE=postgres
export TIMESCALEDB_USER=postgres
export TIMESCALEDB_PASSWORD=postgres

# Run tests against your database
make test-local

Requirements: Docker must be installed and running for make test to work. If Docker is not available, database tests will be skipped automatically.

Code Quality

The project uses:

  • Black for code formatting
  • Ruff for linting
  • MyPy for type checking
  • Pytest for testing with async support

All checks run automatically in CI via GitHub Actions.

Running Checks Locally

You can run all checks locally using the Makefile:

# Install dev dependencies
make install-dev

# Run all checks (lint, type-check, test)
make check

# Or run individually:
make lint          # Run linters
make lint-fix      # Fix linting issues automatically
make format        # Format code with black
make type-check    # Run type checking
make test          # Run tests
make test-cov      # Run tests with coverage report

Alternatively, you can use uv directly:

# Linting
uv run ruff check src/ tests/
uv run black --check src/ tests/

# Type checking
uv run mypy src/

# Testing
uv run pytest tests/ -v

Security

  • SQL Injection Prevention: All queries use parameterized statements
  • Input Validation: Table and hypertable names are validated
  • Connection Security: Supports SSL connections (configure via connection string)
  • Error Handling: Sensitive information is not exposed in error messages

Performance

  • Async Operations: Built on asyncpg for non-blocking I/O
  • Connection Pooling: Efficient connection reuse with configurable pool sizes
  • Query Timeouts: Configurable timeouts to prevent long-running queries
  • Resource Management: Proper cleanup of connections and resources

Publishing

The package is automatically published to PyPI via GitHub Actions when you create a GitHub Release. See .github/SETUP_PUBLISHING.md for setup instructions.

Quick setup:

  1. Set up PyPI Trusted Publishing (recommended)
    • Or add PYPI_API_TOKEN as a GitHub secret
  2. Update version in pyproject.toml
  3. Create a GitHub Release with matching tag (e.g., v0.1.0)
  4. The workflow will automatically build and publish to PyPI

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured