docs: fix remote endpoint URL to use ISO code path

This commit is contained in:
Jeffrey von Rotz
2026-04-07 20:17:42 +03:00
parent 438f63ecc3
commit d6ae42cf7b

View File

@@ -39,12 +39,12 @@ This MCP server makes Israeli law **searchable, cross-referenceable, and AI-read
> Connect directly to the hosted version -- zero dependencies, nothing to install.
**Endpoint:** `https://mcp.ansvar.eu/law-israel-law-mcp/mcp`
**Endpoint:** `https://mcp.ansvar.eu/law-il/mcp`
| Client | How to Connect |
|--------|---------------|
| **Claude.ai** | Settings > Connectors > Add Integration > paste URL |
| **Claude Code** | `claude mcp add israeli-law --transport http https://mcp.ansvar.eu/law-israel-law-mcp/mcp` |
| **Claude Code** | `claude mcp add israeli-law --transport http https://mcp.ansvar.eu/law-il/mcp` |
| **Claude Desktop** | Add to config (see below) |
| **GitHub Copilot** | Add to VS Code settings (see below) |
@@ -55,7 +55,7 @@ This MCP server makes Israeli law **searchable, cross-referenceable, and AI-read
"mcpServers": {
"israeli-law": {
"type": "url",
"url": "https://mcp.ansvar.eu/law-israel-law-mcp/mcp"
"url": "https://mcp.ansvar.eu/law-il/mcp"
}
}
}
@@ -68,7 +68,7 @@ This MCP server makes Israeli law **searchable, cross-referenceable, and AI-read
"github.copilot.chat.mcp.servers": {
"israeli-law": {
"type": "http",
"url": "https://mcp.ansvar.eu/law-israel-law-mcp/mcp"
"url": "https://mcp.ansvar.eu/law-il/mcp"
}
}
}