npm @labelgrid/mcpstdioMITupdated 8d ago
The official LabelGrid tooling for the LabelGrid public API, organised as an npm workspace.
What can you do with labelgrid mcp?
LabelGrid MCP — workspace
The official LabelGrid tooling for the LabelGrid public API, organised as an npm workspace.
Looking for the MCP server docs? They live in
packages/mcp/README.md — installation for Claude Desktop / Cursor /
any MCP client, the full tool reference, safety gating, and configuration.
Packages
| Package | What it is |
|---|---|
@labelgrid/mcp |
The MCP server — 30 consolidated tools over the LabelGrid public API. Published to npm; also ships as the labelgrid.mcpb one-click bundle for Claude Desktop. |
@labelgrid/cli |
The labelgrid command-line tool — the same API surface for terminals and scripts: catalog, releases, files, analytics, royalties, webhooks, and distribution, with --json output for pipelines. |
@labelgrid/core |
The shared API client: HTTP transport with structured errors, presigned-URL uploads, content-type allowlists, the catalog-entity registry, and redacting logging. Used by every LabelGrid tool built on the public API. |
Command-line tool
Full docs (auth setup, every command group, scripting, safety model) live in
packages/cli/README.md. Quickstart:
npm install -g @labelgrid/cli # Node 20+; installs the `labelgrid` command
export LABELGRID_API_TOKEN=... # or run `labelgrid auth login`
labelgrid auth whoami # verify the token
labelgrid catalog search --type release --json | jq '.data[].id'
Agent skill
skills/labelgrid-release/SKILL.md is an agent
skill for the full release lifecycle — draft a release and its tracks, upload audio and
artwork, validate, review, distribute, and track delivery — with the exact MCP tool and
CLI command for each step and guidance on which vehicle fits. Point an agent at the file,
or drop it into your assistant's skills directory, to teach it the end-to-end LabelGrid
release flow.
Layout & build arrangement
- The root
package.jsonis a private workspaces manifest; its scripts fan out to the packages (npm run buildbuilds@labelgrid/corefirst, then@labelgrid/mcpand@labelgrid/cli;npm testruns each package's suite). Contributors work from the repo root:packages/coreis the shared client,packages/mcpthe MCP server,packages/clithe command-line tool — the two products are thin adapters over core. - Each package has its own
tsconfig.jsonextending the sharedtsconfig.base.json(no TypeScript project references — the explicit root build chain keeps ordering correct and simple).@labelgrid/mcpimports@labelgrid/corethrough the workspace link and compiles against its built declarations. - Unit tests run per package via each package's
vitest.config.ts. The MCP package aliases@labelgrid/coreto the sibling package's TypeScript source, so running tests never requires a prior core build. - Repo-wide checks live in
scripts/and run from the root:npm run lint,npm run leak-guard,npm run check-coverage,npm run gen-docs,npm run measure-tokens.
Development
npm ci # install the whole workspace
npm run build # build core, then mcp and cli
npm test # unit suites for every package
npm run lint # biome over the repo
The MCP server binary after a build: node packages/mcp/dist/index.js (or npm start).
The CLI binary after a build: node packages/cli/dist/index.js.
License
Install
Add labelgrid mcp to your client. Pick the one you use.
claude mcp add mcp -- npx -y @labelgrid/mcpcodex mcp add mcp -- npx -y @labelgrid/mcpamp mcp add mcp -- npx -y @labelgrid/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@labelgrid/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@labelgrid/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@labelgrid/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@labelgrid/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@labelgrid/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@labelgrid/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@labelgrid/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@labelgrid/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @labelgrid/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.4.0Latest | Jul 27, 2026 |
| 0.3.1 | Jul 20, 2026 |
| 0.3.0 | Jul 20, 2026 |
| 0.2.2 | Jul 20, 2026 |
| 0.2.1 | Jul 15, 2026 |
| 0.2.0 | Jul 15, 2026 |
| 0.1.1 | Jul 15, 2026 |