Skip to main content
Glama

Shiped MCP

The stdio MCP server for Shiped. It lets MCP-compatible agents deploy and manage projects on https://shiped.app.

Usage

Add Shiped to an MCP-compatible client:

{
  "mcpServers": {
    "shiped": { "command": "npx", "args": ["-y", "@shiped/mcp"] }
  }
}

The first tool call opens a device-flow login. For explicit login, run:

npx @shiped/mcp login
npx @shiped/mcp logout

login connects the current agent to Shiped. logout clears the cached local token.

Related MCP server: Knowerage

Development

npm ci
npm run build

The Docker image runs the server over stdio and can be used for MCP introspection or local container-based clients.

Publish

npm login
npm publish

Available Tools

3 tools
delete_shiped_projectBInspect

Delete a deployed project from Shiped.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesProject slug to delete

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It simply restates the destructive 'delete' action without mentioning permanence, side effects on associated resources, permission requirements, or irreversibility. The added qualifier 'deployed' is minimal and does not disclose consequential behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, direct sentence that captures the essential operation with no filler. It is front-loaded and every word contributes to meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter delete operation, the schema and description together allow correct invocation. However, the lack of any usage guidance or behavioral warning (destructive, irreversible, permissions) leaves gaps that matter for a deletion tool, so it is only minimally acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the slug parameter is already well documented as 'Project slug to delete'. The description adds the 'deployed' qualifier, which slightly clarifies the target, but it does not add meaningful semantics beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Delete') and resource ('a deployed project from Shiped'). It distinguishes this tool from its siblings (deploy_to_shiped, list_shiped_projects), which both involve different operations on the same resource type.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given about when to use this tool versus the alternatives, prerequisites, or any conditions that would make deletion appropriate. The description only states what the tool does, not why or when an agent should choose it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deploy_to_shipedAInspect

Deploy HTML/CSS/JS code to Shiped and get an instant public HTTPS URL. Use after generating code with an AI to make it live and shareable. Returns the URL immediately — the user can share it right away.

ParametersJSON Schema
NameRequiredDescriptionDefault
htmlNoComplete HTML content (single file deployment)
nameYesProject name — becomes the subdomain (e.g. "portfolio" → portfolio.shiped.site)
typeNoProject type. Defaults to "static". "node" runs a single index.js file, "python" runs a single main.py file.
filesNoMultiple files for multi-file projects

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the transparency burden. It discloses the key behavior (immediate URL return, shareable), but it does not mention potential side effects (e.g., overwriting an existing project), authentication needs, or error handling. For a deployment action, this is a moderate gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, zero fluff, and the core purpose is front-loaded. Every sentence adds value: the first states the action and result, the second provides usage context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the rich schema (100% coverage) and no output schema, the description adequately explains the primary outcome (URL). It could detail error cases or overwrite behavior, but for a typical deploy tool with sibling list/delete, the agent likely has enough context. Missing details are minor.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all parameters (html, name, type, files) already have detailed descriptions. The tool description only adds a general mention of 'HTML/CSS/JS' without enriching parameter meaning beyond the schema. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific verb 'Deploy' and resource 'Shiped', and the outcome (instant public HTTPS URL). It also contrasts with siblings by focusing on deployment, while siblings are list/delete. This makes it unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides a clear when-to-use context: 'Use after generating code with an AI to make it live and shareable.' While it doesn't explicitly mention when not to use or name alternatives, the sibling set (list/delete) makes the deployment role obvious. A brief exclusion would be nice but is not critical.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_shiped_projectsAInspect

List the user's deployed projects on Shiped with their URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the behavioral disclosure. 'List' clearly signals a read-only operation, and the description states what is returned. However, it does not mention authentication expectations, pagination, error conditions, or whether an empty list is possible. For a zero-parameter read-only tool this is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler. It is front-loaded with the action 'List' and immediately states the resource and output. Every word contributes meaningful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple zero-parameter list with no output schema, the description adequately conveys scope ('user's deployed projects') and content ('URLs'). It could go further by describing the response shape or auth context, but the low complexity means no serious information gap exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and the schema is empty, so there are no parameter semantics to explain. Per the rubric, a zero-parameter tool gets a baseline of 4 because the description cannot be expected to add parameter-level detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb ('List'), a specific resource ('deployed projects on Shiped'), and the output ('their URLs'). It is immediately distinguishable from sibling tools like delete_shiped_project and deploy_to_shiped because the operation is clearly a read-only listing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description conveys the basic context: it lists the user's deployed projects. It does not explicitly state when to prefer this tool over the delete or deploy siblings, though the tool names imply the appropriate use case. No exclusions or alternative routing are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updatesv0.2.0
    • First observeddelete_shiped_project
    • First observeddeploy_to_shiped
    • First observedlist_shiped_projects

TDQS

A3.9/5.0

Scored across 3 tools

Disambiguation5/5

Each tool handles a distinct operation: deploy creates a new deployment, list reads all projects, and delete removes one. There is no overlap or chance of confusing one tool with another.

Naming Consistency4/5

Most tools follow a verb_noun pattern like list_shiped_projects and delete_shiped_project, but deploy_to_shiped uses a different verb + preposition format. The names remain predictable and readable despite the minor inconsistency.

Tool Count5/5

With 3 tools, the server is tightly scoped to core deployment lifecycle operations. The count is well-suited for the simple hosting domain.

Completeness4/5

The set covers deploy, list, and delete, which are the essential operations for a deployment service. An explicit single-project fetch or update/redeploy operation could improve completeness, but the current surface has no major gaps.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers