HomeOther › mcp-server

mcp-server

MCP Server for ThoughtSpot - provides OAuth authentication and tools for querying data

TypeScript Remote
★ 33 stars Last pushed 2026-09-15 License: NOASSERTION

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Remote (streamable-http)

https://agent.thoughtspot.app/mcp Requires auth (checked 2026-09-24)

Claude Code:

claude mcp add --transport http mcp-server https://agent.thoughtspot.app/mcp

Or add to your MCP client config:

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://agent.thoughtspot.app/mcp"
    }
  }
}

Remote (sse)

https://agent.thoughtspot.app/sse Requires auth (checked 2026-09-24)

Claude Code:

claude mcp add --transport sse mcp-server https://agent.thoughtspot.app/sse

Or add to your MCP client config:

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://agent.thoughtspot.app/sse"
    }
  }
}

Remote (streamable-http)

https://agent.thoughtspot.app/bearer/mcp HTTP 400 when checked 2026-09-24

Claude Code:

claude mcp add --transport http mcp-server https://agent.thoughtspot.app/bearer/mcp --header "Authorization: <YOUR_VALUE>" --header "X-TS-Host: <YOUR_VALUE>"

Or add to your MCP client config:

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://agent.thoughtspot.app/bearer/mcp",
      "headers": {
        "Authorization": "<YOUR_VALUE>",
        "X-TS-Host": "<YOUR_VALUE>"
      }
    }
  }
}
  • Authorization required secret — Bearer token for authentication, have the ts-host as 'token@ts-host' or as a separate 'x-ts-host' header
  • X-TS-Host — ThoughtSpot instance URL, if not provided in the authorization header

Remote (sse)

https://agent.thoughtspot.app/bearer/sse HTTP 400 when checked 2026-09-24

Claude Code:

claude mcp add --transport sse mcp-server https://agent.thoughtspot.app/bearer/sse --header "Authorization: <YOUR_VALUE>" --header "X-TS-Host: <YOUR_VALUE>"

Or add to your MCP client config:

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://agent.thoughtspot.app/bearer/sse",
      "headers": {
        "Authorization": "<YOUR_VALUE>",
        "X-TS-Host": "<YOUR_VALUE>"
      }
    }
  }
}
  • Authorization required secret — Bearer token for authentication, have the ts-host as 'token@ts-host' or as a separate 'x-ts-host' header
  • X-TS-Host — ThoughtSpot instance URL, if not provided in the authorization header

Related servers

Data from the Official MCP Registry