1. MCP
Tiiny Host API
  • Getting Started
  • API
    • Create Project
      POST
    • Update Project
      PUT
    • Delete Project
      DELETE
    • Fetch Profile
      GET
  • Agent
    • Skill
  • MCP
    • Connection Guide
  1. MCP

Connection Guide

Publish, update, and delete Tiiny Host projects directly from your AI chat - no dashboard required.

Overview#

The Tiiny Host MCP (Model Context Protocol) server connects your AI assistant directly to your Tiiny Host account. Once connected, you can hand your assistant a finished file or website and ask it to make that live, without leaving the conversation.
What you can do:
Publish a new website, file, or project to a live tiiny.site URL
Update an existing live project with new content
Delete a project you no longer need
Availability: included on every Tiiny Host plan, including the free tier.

Setup Instructions#

General#

Our MCP server supports Streamable HTTP transport at the following address:
https://mcp.tiiny.host
Tiiny Host officially documents the Claude.ai flow below. For other clients, use the same endpoint with that client's standard remote-MCP configuration, as shown in the sections that follow.

Claude.ai / Claude Desktop#

1.
Click your name in the bottom-left sidebar → Settings.
2.
Select Connectors.
3.
Click Add (top right) → Add custom connector.
4.
Enter:
Name: Tiiny Host
URL: https://mcp.tiiny.host
5.
Leave advanced settings blank → click Add.
The first time you ask Claude to publish something, it'll ask for permission to use the connector — choose Always allow to skip that prompt going forward.

Claude Code#

claude mcp add --transport http tiiny-host https://mcp.tiiny.host
Run /mcp in your next session to complete authentication.

Codex#

codex mcp add tiiny-host --url https://mcp.tiiny.host
If this is your first MCP server in Codex, enable the rmcp feature first by adding to ~/.codex/config.toml:
[features]
experimental_use_rmcp_client = true
Then run codex mcp login tiiny-host to complete authentication.

Cursor#

Search for Tiiny Host in Cursor's MCP tools directory, or add it manually:
{
  "mcpServers": {
    "tiiny-host": {
      "url": "https://mcp.tiiny.host"
    }
  }
}

Jules#

1.
In Tiiny Host, go to your account settings and generate an API key.
2.
In Jules, go to MCP Settings.
3.
Add a custom server pointing to https://mcp.tiiny.host and paste your API key when prompted.

Visual Studio Code#

{
  "mcpServers": {
    "tiiny-host": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.tiiny.host"]
    }
  }
}
Or via the UI:
1.
Ctrl/Cmd + Shift + P → MCP: Add Server.
2.
Select Command (stdio).
3.
Enter: npx mcp-remote https://mcp.tiiny.host
4.
Name it Tiiny Host.
5.
Run MCP: List Servers → select Tiiny Host → Start Server.

v0 by Vercel#

Add it from the connections page using the URL https://mcp.tiiny.host.

Windsurf#

1.
Ctrl/Cmd + , to open Windsurf settings.
2.
Scroll to Cascade → MCP servers.
3.
Select Add Server → Add custom server.
4.
Add:
{
  "mcpServers": {
    "tiiny-host": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.tiiny.host"]
    }
  }
}

Zed#

1.
Cmd/Ctrl + , to open Zed settings.
2.
Add:
{
  "context_servers": {
    "tiiny-host": {
      "source": "custom",
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.tiiny.host"],
      "env": {}
    }
  }
}

Others#

Any other tool that supports MCP servers can connect with:
Command: npx
Arguments: -y mcp-remote https://mcp.tiiny.host
Environment: none

Example prompts#

"Build a one-page portfolio site and publish it with Tiiny Host."
"Update my live project with this new hero section."
"Delete the staging site I published yesterday."

FAQ#

Do I need an API key to connect?
No, not for Claude.ai. The connector authenticates through your Tiiny Host account. First-time/anonymous use only needs an email address; generating an API key later makes hosting and updates permanent — and is required for clients (like Jules) that don't support the in-browser auth flow.
Does this cost extra on top of my plan?
No separate fee — the MCP server is available on every plan including free. Usage counts against your existing plan limits (active projects, storage, monthly visits).
Is my data secure?
The connection is authenticated to your Tiiny Host account and only shares data with the AI client you've explicitly connected it to.
My connection isn't working — what do I check?
Confirm the URL is exactly https://mcp.tiiny.host with no trailing path
Reconnect if your Tiiny Host session has expired
Contact support@tiiny.host if the issue persists

Related#

Tiiny Host Help Center: How to connect to the MCP server with Claude
Pricing: tiiny.host/pricing
Modified at 2026-07-16 13:34:35
Previous
Skill
Built with