integrations

Solid

Discover and call the tools a connected integration exposes, such as Linear, GitHub, Sentry, or Notion, through `superset mcp`. Use when the user wants something done in a connected service, asks what an integration can do or which tools it has, wants a specific tool called, asks why an integration's tools are failing, or when another skill expects `mcp__linear__*`-style tools that are not in your tool list.

Code & Development 14,081 stars 1259 forks Updated today NOASSERTION

Install

View on GitHub

Quality Score: 86/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Calling an integration's tools An integration is an installed plugin with a connected account. Its tools do not run here. `superset mcp` hands the call to Superset's API, which attaches the stored credential and forwards it to the plugin's MCP server. No token is ever written to this machine, which is also why a sandbox with no route to Linear can still file a Linear issue. Installing, connecting, and marketplaces belong to the `plugins` skill. This one starts once something is connected, and it is two steps: list the tools, then call one. ## 1. Find the integration ```bash superset plugins list # one row per connected account, one row if none yet superset plugins connections --plugin linear ``` Read the `STATUS` column. `connected: <account>` is callable. `needs connection` means the skills are installed but no account is authorized, so its tools will fail until someone connects one; that is a connect step, not a bug. `PLUGIN ID` holds the connection id, and it is empty on a row with no connection yet. A plugin with two connected accounts has two rows and two ids. ## 2. List the tools before calling one ```bash superset mcp tools linear superset mcp tools --connection <id> # when the name has several accounts superset mcp tools linear | jq -r '.[].tool' # names only; descriptions run long ``` Names and descriptions come from the plugin's own server, not from anything in this repo, and they change between plugin versions. Never ...

Details

Author
superset-sh
Repository
superset-sh/superset
Created
10 months ago
Last Updated
today
Language
TypeScript
License
NOASSERTION

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category