Remote setup
リモートバージョンの MCP サーバーは https://mcp.svelte.dev/mcp で利用できます。
以下は、一般的な MCP クライアントでの設定方法です:
Claude Code
Claude Code でリモート MCP バージョンを含めるには、次のコマンドを実行するだけです:
claude mcp add -t http -s [scope] svelte https://mcp.svelte.dev/mcpご希望の scope(user、project、local のいずれかを指定)と name を選択できます。
If you prefer you can also install the svelte plugin in the Svelte Claude Code Marketplace that will give you both the remote server and useful skills.
Claude Desktop
- Settings > Connectors を開く
- Add Custom Connector をクリック
- 名前を尋ねられたら
svelteと入力 - Remote MCP server URL 入力欄に
https://mcp.svelte.dev/mcpと入力 - Add をクリック
Codex CLI
config.toml に次の内容を追加します(デフォルトでは ~/.codex/config.toml ですが、より高度なセットアップについては the configuration documentation を参照してください):
experimental_use_rmcp_client = true
[mcp_servers.svelte]
url = "https://mcp.svelte.dev/mcp"Copilot CLI
Use the Copilot CLI to interactively add the MCP server:
/mcp addAlternatively, create or edit ~/.copilot/mcp-config.json and add the following configuration:
{
"mcpServers": {
"svelte": {
"url": "https://mcp.svelte.dev/mcp"
}
}
}Gemini CLI
Gemini CLI でリモート MCP バージョンを含めるには、次のコマンドを実行するだけです:
gemini mcp add -t http -s [scope] svelte https://mcp.svelte.dev/mcpThe [scope] must be user or project.
OpenCode
You can automatically configure the MCP server using the OpenCode plugin (recommended). If you prefer to configure the MCP server manually, run:
opencode mcp add以下のインストラクションに従い、'Select MCP server type' プロンプトで 'Remote' を選択します:
opencode mcp add
┌ Add MCP server
│
◇ Enter MCP server name
│ svelte
│
◇ Select MCP server type
│ Remote
│
◇ Enter MCP server URL
│ https://mcp.svelte.dev/mcpVS Code
- コマンドパレットを開く
- "MCP: Add Server..." を選択
- "HTTP (HTTP or Server-Sent-Events)" を選択
- 入力欄に
https://mcp.svelte.dev/mcpと入力してEnterを押す - お好みの名前を入力
GlobalMCP サーバーとして追加するかWorkspaceMCP サーバーとして追加するか選択
Cursor
You can automatically configure the MCP server using the Cursor plugin (recommended). If you prefer to configure the MCP server manually you can:
- Open the command palette
- Select "View: Open MCP Settings"
- Click on "Add custom MCP"
これによって MCP サーバーのファイルが開くので、次の構成を追加します:
{
"mcpServers": {
"svelte": {
"url": "https://mcp.svelte.dev/mcp"
}
}
}GitHub Coding Agent
- Open your repository in GitHub
- Go to Settings
- Open Copilot > Coding agent
- Edit the MCP configuration
{
"mcpServers": {
"svelte": {
"type": "http",
"url": "https://mcp.svelte.dev/mcp",
"tools": ["*"]
}
}
}- Click Save MCP configuration
Other clients
もしお使いの MCP クライアントの設定例がない場合は、その MCP クライアントのドキュメントで remote サーバーについて参照し、URL として https://mcp.svelte.dev/mcp を使用してください。
Edit this page on GitHub llms.txt