Registration Examples

Custom Registration Examples

Custom Sources

mcp_config.json
1{
2  "mcpServers": {
3    "sushimcp": {
4      "command": "npx",
5      "args": [
6        "@chriswhiterocks/sushimcp@latest",
7        "--urls",
8        "hono:https://hono.dev/llms-full.txt drizzle:https://orm.drizzle.team/llms.txt"
9      ]
10    }
11  }
12}

Custom Sources (No Defaults)

mcp_config.json
1{
2  "mcpServers": {
3    "sushimcp": {
4      "command": "npx",
5      "args": [
6        "@chriswhiterocks/sushimcp@latest",
7        "--urls",
8        "hono:https://hono.dev/llms-full.txt drizzle:https://orm.drizzle.team/llms.txt",
9        "--no-defaults"
10      ]
11    }
12  }
13}

Custom Sources (Allow Domain)

mcp_config.json
1{
2  "mcpServers": {
3    "sushimcp": {
4      "command": "npx",
5      "args": [
6        "@chriswhiterocks/sushimcp@latest",
7        "--urls",
8        "hono:https://hono.dev/llms-full.txt drizzle:https://orm.drizzle.team/llms.txt",
9        "--allow-domain",
10        "hono",
11        "--allow-domain",
12        "drizzle"
13      ]
14    }
15  }
16}

Example Request

Want more examples? Submit a request.

On this page