Shiped
Server Details
Deploy AI-generated HTML/CSS/JS to instant public HTTPS URLs from any MCP-compatible agent.
- Status
- Healthy
- Uptime
- 96.0% over 22 days
- OAuth
- Requires browser extension
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
- Repository
- shiped-app/shiped-mcp
- GitHub Stars
- 0
- Server Listing
- Shiped MCP
TDQS
Scored across 3 tools
The three tools—deploy, list, and delete—are completely distinct operations with no overlap. An agent can easily tell them apart based on action and purpose.
Most tools follow a verb_noun pattern (delete_shiped_project, list_shiped_projects), but deploy_to_shiped uses a different preposition-based pattern. This is a minor deviation and the names remain predictable.
Three tools is a well-scoped minimum for a deployment service: create, read, and delete. No redundant or unnecessary tools are present.
The domain is deploying and managing projects. The set covers the essential lifecycle (deploy, list, delete), though an update or redeploy operation might be expected in some workflows; agents can work around this by redeploying.
Available Tools
3 toolsdelete_shiped_projectBInspect
Delete a deployed project from Shiped.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Project slug to delete |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| html | No | Complete HTML content (single file deployment) | |
| name | Yes | Project name — becomes the subdomain | |
| type | No | Project type. Defaults to "static". "node" runs a single index.js file, "python" runs a single main.py file. | |
| files | No | Multiple files for multi-file projects |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It does reveal the key traits — the operation creates a live deployment and returns a public URL. But it omits substantial behavioral details for a mutation tool: what happens if the subdomain/name already exists, whether redeployment overwrites an existing project, and the oneOf requirement to pass exactly one of html or files. It also scopes itself to 'HTML/CSS/JS' while the schema supports node and python types.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero filler: the first states the action and outcome, the second supplies the triggering context. The most decision-relevant fact — instant public HTTPS URL — is front-loaded in the opening clause.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The schema fully documents all parameters and the oneOf constraint, and the description supplies the headline return value (public URL). However, with no annotations and no output schema, the agent is left without failure-mode information (e.g., name collisions, overwrite behavior) and without awareness that node/python deployments are supported — significant for a tool whose sibling delete_shiped_project implies a lifecycle the description never touches.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%; every parameter (html, name, type, files) already has a clear description including the subdomain mapping and the static/node/python semantics. The description text itself adds no parameter-level meaning beyond the schema, so the coverage-based baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource — 'Deploy HTML/CSS/JS code to Shiped' — and names a concrete outcome, 'an instant public HTTPS URL.' The deploy verb cleanly differentiates it from the sibling tools delete_shiped_project and list_shiped_projects. The narrowing to HTML/CSS/JS (schema also allows node/python) doesn't obscure the core purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The second sentence gives explicit context for when this tool is the right choice: 'Use after generating code with an AI to make it live and shareable.' This makes the deploy-vs-manage distinction against the delete/list siblings evident, though it stops short of naming alternatives or stating explicit when-not-to-use conditions.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
3 tool updates
- First observed
delete_shiped_project - First observed
deploy_to_shiped - First observed
list_shiped_projects
Related MCP Connectors
Instant web publishing for AI agents. POST HTML, get a live URL. No account needed.
Hosted MCP for creating, checking, deploying, and hosting static sites for AI agents.
Hosting for AI agents: your AI client deploys Docker apps to live HTTPS URLs over MCP.
Deploy HTML from any agent: POST markup, get a live URL. Static hosting API with MCP tools.
Related MCP Servers
- FlicenseAqualityCmaintenanceDeploy any HTML project to a live public URL in seconds — directly from Cursor, Claude Code, or any MCP-compatible AI agent.2-
- AlicenseAqualityDmaintenanceAgent-native hosting: your agent deploys any folder to a live URL in one command — no account, no dashboard, no CAPTCHA — and hands the human a link plus a plain-language summary. Full deploy lifecycle as MCP tools (deploy, verify, logs, inspect, rollback), production approval human-only; static sites and full Node.js apps, open source (Apache-2.0).13Apache 2.0
- AlicenseNot gradedqualityCmaintenanceOne-call static page/site deploys for AI agents — POST HTML, a files map, or a zip and get back a live unguessable URL. Remote endpoint at https://ship.page/mcp, free tier needs no account or API key.MIT
- AlicenseAqualityBmaintenanceInstant web hosting for AI agents. Publish a live site in one call, no account needed.5MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.