{
  "markdown": "# SudnoKontrol MCP\n\nModel Context Protocol server for the **Ukrainian national vessel registry** — search vessels by registration number, name or owner, look up full registry records, and query aggregate statistics. Exposes the public data of the Державний судновий реєстр України (State Ship Registry) and the Суднова книга України (Ship Book).\n\nData is read-only and public — **no API key required**.\n\n- **Hosted endpoint (recommended):** `https://api.sk.ukrfish.org/mcp` (Streamable HTTP)\n- **Project docs:** `https://sk.ukrfish.org/api-docs` and `https://sk.ukrfish.org/info/ai-agents`\n- **Discovery:** `https://sk.ukrfish.org/llms.txt`\n\n## Tools\n\n| Tool | Description |\n|---|---|\n| `search_vessel_registries` | Free-text + structured search across both national registries. Deterministic ordering: exact registration-number matches first. Supports Cyrillic/Latin and separator-insensitive numbers (`УПС-0129` ≡ `УПС 0129` ≡ `UPS-0129`). |\n| `lookup_vessel` | Exact vessel lookup by normalized registration number. Returns full registry record. |\n| `get_registry_stats` | Aggregate public vessel counts (\"how many vessels...\"). |\n| `get_dataset_metadata` | Dataset context: sources, import dates, record counts, fields. |\n\nEvery search/lookup result includes a `web_url` → `https://sk.ukrfish.org/registry?vessel=<reg>` pointing to the public vessel information page.\n\n## Quick start — hosted server\n\n### Claude Code / Claude Desktop\n\n```bash\nclaude mcp add --transport http sudnokontrol https://api.sk.ukrfish.org/mcp\n```\n\n### Cursor\n\n`Settings → MCP → Add new MCP server` → Name `sudnokontrol`, Type `HTTP`, URL `https://api.sk.ukrfish.org/mcp`.\n\n### Windsurf\n\n`Windsurf → MCP → Add server` → `https://api.sk.ukrfish.org/mcp`.\n\n### Any MCP client (streamable HTTP)\n\n```\nURL:  https://api.sk.ukrfish.org/mcp\nAuth: none (public, IP rate-limited)\n```\n\n## Run it yourself\n\nThe server proxies the public API and needs no credentials.\n\n```bash\n# stdio (for Claude Desktop \"command\" servers)\nnpx sudnokontrol-mcp\n\n# HTTP (streamable)\nnpx sudnokontrol-mcp http\n# or: PORT=9000 HOST=127.0.0.1 npx sudnokontrol-mcp http\n```\n\nInstall from this repo directly:\n\n```bash\nnpm install -g github:ailubes/sudnokontrol-mcp\n```\n\nTo point at a different base (e.g. your own deployment):\n\n```bash\nSUDNOKONTROL_API=https://api.sk.ukrfish.org/api/ai npx sudnokontrol-mcp\n```\n\nFrom source:\n\n```bash\nnpm install\nnpm run build\nnode dist/index.js        # stdio\nnode dist/index.js http   # HTTP on :8958/mcp\n```\n\n### Connect to your local instance\n\n```\nclaude mcp add --transport http local-sudnokontrol http://127.0.0.1:8958/mcp\n```\n\n## API (underlying REST, no MCP needed)\n\n| Endpoint | Purpose |\n|---|---|\n| `GET https://api.sk.ukrfish.org/api/ai/openapi.json` | OpenAPI 3.1 spec |\n| `GET https://api.sk.ukrfish.org/api/ai/tools` | Function-calling tool definitions (JSON Schema) |\n| `GET https://api.sk.ukrfish.org/api/ai/meta` | Dataset context |\n| `GET https://api.sk.ukrfish.org/api/ai/registry/search?q=` | Search |\n| `GET https://api.sk.ukrfish.org/api/ai/registry/lookup/{reg}` | Lookup |\n| `GET https://api.sk.ukrfish.org/api/ai/stats` | Aggregates |\n\nRate limit: 300 requests / 15 min / IP on `/api/ai/*`. Search/meta/stats responses cached 60s.\n\n## Example\n\n```\nUser: Is the vessel УПС-4249 registered?\n\nAgent calls: lookup_vessel {\"registration_number\": \"УПС-4249\"}\nResponse: { registration_number: \"УПС-4249\", name: \"ua 5614 KV\", owner_name: \"ТОВ Соціальні ініціативи Запоріжжя\", source: \"registry\", web_url: \"https://sk.ukrfish.org/registry?vessel=УПС-4249\", ... }\n```\n\n## License\n\n[![M8ven Score](https://m8ven.ai/badge/mcp/ailubes-sudnokontrol-mcp-79ey3z)](https://m8ven.ai/mcp/ailubes-sudnokontrol-mcp-79ey3z)\n\nMIT\n\n## Disclaimer\n\nThis is an open-source MCP adapter for the public data of the Ukrainian vessel registries operated by SudnoKontrol. It is not an official government service.\n",
  "bytes": 3886,
  "sha": "7f8715bbb56e44805001713184f7690160b49f365ef384d6212ad849d764cefb",
  "repo_slug": "ailubes/sudnokontrol-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_org_ukrfish_sk_sudnokontrol_2d421554/readme"
}