mcp.damato.design

This guide shows you how to connect to the D’Amato Design MCP server at mcp.damato.design from all popular MCP-compatible AI clients and IDEs.

Connection URL

https://mcp.damato.design/

Server Card (Discovery)

https://mcp.damato.design/.well-known/mcp/server-card.json

Most MCP clients use this metadata automatically when connecting.


Connecting from Popular MCP Clients

Below are the official instructions for each major client that ships with MCP support or works with remote MCP servers.

Claude Desktop

Claude Desktop supports MCP natively and can connect to remote HTTP MCP servers using mcp-remote.

1. Install Claude Desktop

https://claude.ai/download

2. Open the config file

3. Add the server

{
"mcpServers": {
"damato-design": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.damato.design/"
]
}
}
}

4. Restart Claude Desktop

You should now see a 🔌 icon showing an active MCP server connection.


Cursor IDE

Cursor supports MCP and also requires mcp-remote for remote HTTP servers.

1. Open Cursor

https://cursor.so

2. Open Settings → Tools & MCP → “New MCP Server”

Or edit ~/.cursor/mcp.json manually.

3. Add:

{
"mcpServers": [
{
"name": "damato-design",
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.damato.design/"
]
}
]
}

4. Restart Cursor


Cline (VS Code)

Cline supports HTTP MCP servers natively without wrappers.

1. Install Cline

https://github.com/cline/cline

2. Add in Settings → Cline → MCP Servers

(No mcp-remote wrapper required.)


Windsurf

Windsurf supports MCP using command transports.

Steps

Settings → AI → MCP Servers → Add Server

Restart Windsurf.


Zed Editor

Zed integrates MCP in its assistant settings.

Add server

Edit:

~/.config/zed/settings.json
{
"assistant": {
"mcp_servers": {
"damato-design": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.damato.design/"
]
}
}
}
}

Restart Zed.


Continue (VS Code)

Continue supports MCP via config.

Edit:

~/.continue/config.json
{
"mcpServers": [
{
"name": "damato-design",
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.damato.design/"
]
}
]
}

Restart VS Code.


MCP Inspector

Great for debugging & introspection.

Terminal window
npx @modelcontextprotocol/inspector npx mcp-remote@latest https://mcp.damato.design/

Then open:

http://localhost:6274

Custom Integrations

Using the MCP SDK (Node.js)

import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js';
const client = new Client({
name: "my-client",
version: "1.0.0"
});
const transport = new StdioClientTransport({
command: "npx",
args: ["mcp-remote@latest", "https://mcp.damato.design/"]
});
await client.connect(transport);
console.log(await client.listResources());

Direct HTTP / JSON-RPC

Initialize

Terminal window
curl -X POST https://mcp.damato.design/ -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2025-06-18",
"clientInfo": { "name": "test", "version": "1.0.0" }
}
}'

List Resources

Terminal window
curl -X POST https://mcp.damato.design/ -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":2,"method":"resources/list"}'

Available Resources

To see real-time resources:

Terminal window
curl https://mcp.damato.design/.well-known/mcp/server-card.json | jq '.resources'

Troubleshooting

”Cannot connect to MCP server”

”No resources available”

Learn More