Latest Threat ResearchGlassWorm Loader Hits Open VSX via Developer Account Compromise.Details
Socket
Book a DemoInstallSign in
Socket

@thoughtspot/mcp-server

Package Overview
Dependencies
Maintainers
13
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thoughtspot/mcp-server

MCP Server for ThoughtSpot

npmnpm
Version
0.4.0
Version published
Maintainers
13
Created
Source

ThoughtSpot


ThoughtSpot MCP Server
MCP Server Static Badge GitHub branch check runs Coverage Status

The ThoughtSpot MCP Server is a Cloudflare Worker-based service that exposes Model Context Protocol (MCP) endpoints for interacting with ThoughtSpot data and tools. It provides secure OAuth-based authentication and a set of tools for querying and retrieving relevant data from a ThoughtSpot instance.

Table of Contents

Features

  • OAuth Authentication: Secure endpoints using OAuth flows, as user's own scope.
  • Tools:
    • ping: Test connectivity and authentication.
    • getRelevantQuestions: Get relevant data questions from ThoughtSpot database based on a user query.
    • getAnswer: Get the answer to a specific question from ThoughtSpot database.
    • createLiveboard: Create a liveboard from a list of answers.
  • MCP Resources:
    • datasources: List of TS Data models the user has access to.

MCP Client Configuration

To configure this MCP server in your MCP client (such as Claude Desktop, Windsurf, Cursor, etc.), add the following configuration to your MCP client settings:

{
  "mcpServers": {
    "ThoughtSpot": {
      "command": "npx",
      "args": [
         "mcp-remote",
         "https://thoughtspot-mcp-server.thoughtspot-485.workers.dev/sse"
      ]
    }
  }
}

Supported transports

Contributing

Local Development

  • Install dependencies:
    npm install
    
  • Set up environment variables:
    • Copy .dev.vars and fill in your ThoughtSpot instance URL and access token.
  • Start the development server:
    npm run dev
    

Endpoints

  • /mcp: MCP HTTP Streaming endpoint
  • /sse: Server-sent events for MCP
  • /api: MCP tools exposed as HTTP endpoints
  • /authorize, /token, /register: OAuth endpoints

Configuration

  • wrangler.jsonc: Configure bindings, secrets, and compatibility.

MCP Server, © ThoughtSpot, Inc. 2025

FAQs

Package last updated on 21 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts