Skip to main content
Glama

Treasure Data MCP Server

by knishioka

Treasure Data MCP Server

A Model Context Protocol (MCP) server that provides Treasure Data API integration for Claude Code and Claude Desktop.

DISCLAIMER: This is a personal development project and is not affiliated with, endorsed by, or related to Treasure Data Inc. in any way. This software is provided "as is" without warranty of any kind, and should be used at your own risk. The author is not responsible for any consequences resulting from the use of this software.

Reference Documentation

For comprehensive Treasure Data documentation and tools:

  • Official API Documentation: https://api-docs.treasuredata.com/en/overview/gettingstarted/
  • CLI Tool (td command): https://github.com/treasure-data/td
  • Console Interface: https://console.treasuredata.com/
  • Detailed API Guide: docs/treasure-data-api-guide.md

Available MCP Tools

This MCP server provides the following tools for interacting with Treasure Data:

Database Management

  1. td_list_databases
    td_list_databases(verbose=False, limit=30, offset=0, all_results=False)
    • Get databases in your Treasure Data account with pagination support
    • Parameters:
      • verbose: If True, return full details; if False, return only names (default)
      • limit: Maximum number of databases to retrieve (defaults to 30)
      • offset: Index to start retrieving from (defaults to 0)
      • all_results: If True, retrieves all databases ignoring limit and offset
    • Examples:
      # Get only database names (default, first 30 databases) td_list_databases # Get full database details td_list_databases verbose=True # Pagination options td_list_databases limit=10 offset=20 # Get all databases regardless of the number td_list_databases all_results=True
  2. td_get_database
    td_get_database(database_name)
    • Get detailed information about a specific database
    • Parameters:
      • database_name: The name of the database to retrieve information for
    • Example:
      # Get information about a specific database td_get_database database_name=my_database_name
  3. td_list_tables
    td_list_tables(database_name, verbose=False, limit=30, offset=0, all_results=False)
    • Get tables in a specific Treasure Data database with pagination support
    • Parameters:
      • database_name: The name of the database to retrieve tables from
      • verbose: If True, return full details; if False, return only names (default)
      • limit: Maximum number of tables to retrieve (defaults to 30)
      • offset: Index to start retrieving from (defaults to 0)
      • all_results: If True, retrieves all tables ignoring limit and offset
    • Examples:
      # Get only table names in a database (default, first 30 tables) td_list_tables database_name=my_database_name # Get detailed information about tables in a database td_list_tables database_name=my_database_name verbose=True # Pagination options td_list_tables database_name=my_database_name limit=10 offset=20 # Get all tables in a database td_list_tables database_name=my_database_name all_results=True

Workflow Project Management

  1. td_list_projects
    td_list_projects(verbose=False, limit=30, offset=0, all_results=False, include_system=False)
    • Get workflow projects in your Treasure Data account with pagination support
    • Parameters:
      • verbose: If True, return full details; if False, return only names and IDs (default)
      • limit: Maximum number of projects to retrieve (defaults to 30)
      • offset: Index to start retrieving from (defaults to 0)
      • all_results: If True, retrieves all projects ignoring limit and offset
      • include_system: If True, include system-generated projects (with "sys" metadata); defaults to False
    • Examples:
      # Get basic project info (default, first 30 projects) td_list_projects # Get detailed project information td_list_projects verbose=True # Pagination options td_list_projects limit=10 offset=20 # Get all projects regardless of the number td_list_projects all_results=True # Include system-generated projects td_list_projects include_system=True
  2. td_get_project
    td_get_project(project_id)
    • Get detailed information about a specific workflow project
    • Note: This provides basic project metadata only. For detailed content and files, use td_download_project_archive followed by td_list_project_files and td_read_project_file
    • Parameters:
      • project_id: The ID of the workflow project to retrieve information for
    • Example:
      # Get information about a specific project td_get_project project_id=123456
  3. td_download_project_archive
    td_download_project_archive(project_id)
    • Download a project's archive (tar.gz) and return information about the download
    • Recommended for examining detailed project contents including SQL queries and workflow definitions
    • Parameters:
      • project_id: The ID of the workflow project to download
    • Example:
      # Download a project's archive td_download_project_archive project_id=123456
  4. td_list_project_files
    td_list_project_files(archive_path)
    • List all files contained in a project archive
    • Parameters:
      • archive_path: The path to the downloaded project archive (.tar.gz file)
    • Example:
      # List files in a downloaded project archive td_list_project_files archive_path=/tmp/td_project_123/project_123456.tar.gz
  5. td_read_project_file
    td_read_project_file(archive_path, file_path)
    • Read the contents of a specific file from a project archive
    • Parameters:
      • archive_path: The path to the downloaded project archive (.tar.gz file)
      • file_path: The path of the file within the archive to read
    • Example:
      # Read a specific file from a project archive td_read_project_file archive_path=/tmp/td_project_123/project_123456.tar.gz file_path=workflow.dig

Setup Instructions

Authentication

This MCP server requires a Treasure Data API key for authentication, which should be provided via the TD_API_KEY environment variable. You can also specify the Treasure Data endpoint using the TD_ENDPOINT environment variable (defaults to api.treasuredata.com).

Setting up with Claude Code

  1. Clone the repository
    git clone https://github.com/knishioka/td-mcp-server.git cd td-mcp-server
  2. Install dependencies
    # Using pip pip install -r requirements.txt # Or using uv (recommended) uv pip install -e .
  3. Set up environment variables and run
    # Set your API key export TD_API_KEY="your-api-key" export TD_ENDPOINT="api.treasuredata.com" # Optional, defaults to US region # Run the MCP server mcp run td_mcp_server/server.py

Setting up with Claude Desktop

Configure this MCP server for use with Claude Desktop by editing your configuration file (claude_desktop_config.json):

{ "mcpServers": { "td": { "command": "uv", "args": [ "--directory", "/absolute/path/to/td-mcp-server", "run", "td_mcp_server/server.py" ], "env": { "TD_API_KEY": "YOUR_API_KEY", "TD_ENDPOINT": "api.treasuredata.com" } } } }

Installation and Requirements

This project requires Python 3.11+ and the following dependencies:

  • requests>=2.28.0 - HTTP client for API requests
  • pydantic>=2.0.0 - Data validation and serialization
  • mcp[cli]>=1.8.1 - Model Context Protocol framework

Install the dependencies:

# Using pip pip install -r requirements.txt # Using uv (recommended for development) uv pip install -e .

Running the Server Directly

You can run the MCP server directly:

# Set your API key export TD_API_KEY="your-api-key" # For US region (default) export TD_ENDPOINT="api.treasuredata.com" # For Japan region # export TD_ENDPOINT="api.treasuredata.co.jp" # Run with MCP CLI mcp run td_mcp_server/server.py

Development

Running Tests

# Run all tests pytest # Run tests with coverage report pytest --cov=td_mcp_server # Run tests for a specific module pytest tests/unit/test_api.py

Code Formatting and Linting

# Run linting with Ruff uv run ruff check td_mcp_server tests # Format code with Ruff uv run ruff format td_mcp_server tests # Run pre-commit hooks on all files uv run pre-commit run --all-files
-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

An MCP server for interacting with Treasure Data API, allowing users to retrieve database information and check server status through natural language queries.

  1. Reference Documentation
    1. Available MCP Tools
      1. Database Management
      2. Workflow Project Management
    2. Setup Instructions
      1. Authentication
      2. Setting up with Claude Code
      3. Setting up with Claude Desktop
    3. Installation and Requirements
      1. Running the Server Directly
        1. Development
          1. Running Tests
          2. Code Formatting and Linting

        Related MCP Servers

        • A
          security
          A
          license
          A
          quality
          An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
          Last updated -
          7
          180
          45
          TypeScript
          MIT License
        • A
          security
          A
          license
          A
          quality
          An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
          Last updated -
          7
          18
          4
          TypeScript
          MIT License
          • Apple
          • Linux
        • A
          security
          F
          license
          A
          quality
          An MCP server implementation that enables interaction with the Unstructured API, providing tools to list, create, update, and manage sources, destinations, and workflows.
          Last updated -
          39
          28
          • Apple
        • -
          security
          F
          license
          -
          quality
          An MCP server that connects to Backlog API, providing functionality to search, retrieve, and update issues through natural language commands.
          Last updated -
          53
          1
          JavaScript
          • Apple

        View all related MCP servers

        MCP directory API

        We provide all the information about MCP servers via our MCP API.

        curl -X GET 'https://glama.ai/api/mcp/v1/servers/knishioka/td-mcp-server'

        If you have feedback or need assistance with the MCP directory API, please join our Discord server