A tool, free, no account

Install links for any remote MCP server

Paste the URL, name the server, and copy the block each client wants. The two clients with one-click install links get those too. The page sends nothing anywhere; everything below is written in your browser.

Claude Code

terminal

One command. Claude Code stores the server in its own config and asks you to sign in on first use.

Claude Code docs, MCP
claude mcp add --transport http juudd https://mcp.juudd.com/mcp

juudd itself also ships as a Claude Code plugin, which is the two-command setup on the landing page. This is the general form, for any server.

Codex

~/.codex/config.toml

A TOML table, then the login command so Codex completes the OAuth flow before the first call.

OpenAI developers, Codex MCP
[mcp_servers.juudd]
url = "https://mcp.juudd.com/mcp"

then codex mcp login juudd

Cursor

.cursor/mcp.json

A JSON file in the project, or the install link, which opens Cursor with the same server filled in.

Cursor docs, MCP
Install in Cursor
{
  "mcpServers": { "juudd": { "url": "https://mcp.juudd.com/mcp" } }
}

VS Code

.vscode/mcp.json

The key is servers, not mcpServers, and type is required. VS Code loads nothing and says nothing when either is wrong.

VS Code docs, MCP servers
Install in VS Code
{
  "servers": { "juudd": { "type": "http", "url": "https://mcp.juudd.com/mcp" } }
}

or, from a terminal code --add-mcp '{"name":"juudd","type":"http","url":"https://mcp.juudd.com/mcp"}'

With GitHub Copilot.

Claude Desktop, claude.ai

settings

No file. The URL goes into a settings screen.

Claude help centre, custom connectors

Settings → Connectors → Add custom connector, and paste: https://mcp.juudd.com/mcp

Needs a Pro, Max, Team or Enterprise plan. A config file will not work for these.

Anything else

wherever it keeps servers

Any client that speaks the protocol over HTTP takes a remote server by URL.

MCP specification

Add a remote MCP server over HTTP at: https://mcp.juudd.com/mcp

A server that publishes its own authorization metadata needs no API key, token or header set by hand; the client discovers the sign-in from the URL.

Where each format comes from

Each block above follows the client's own documentation, linked here, and every one was checked against it on 2026-09-06. Formats change. If a block stops working, the linked page is the one that is right and this one is the one that is stale; write to support@juudd.com and it gets redrawn.

The URL the page opened with

juudd is one of these servers: a deployment platform an assistant drives over MCP, which puts the site it wrote online with a Postgres database and no second account. Its URL is the one in the box when this page loads. That is the whole of what this page has to say about it.

What juudd does