Back to Browse

Public Knowledge Search MCP Server

Developer ToolsLow Risk8.2MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Search Vascue's public healthcare-ops, insurance-claims and booking docs. Public content only.

About

Search Vascue's public healthcare-ops, insurance-claims and booking docs. Public content only.

Remote endpoints: streamable-http: https://www.vascue.io/mcp/search

Security Report

8.2
Low Risk8.2Low Risk

A well-designed MCP server for searching public documentation with excellent security posture. The self-contained implementation uses only bundled content with no network calls at runtime, no authentication required (appropriate for public content), and no dangerous patterns. Minor code quality observations around input validation and error handling do not materially impact security for this read-only, deterministic use case.

7 files analyzed · 4 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

Vascue Public Knowledge Search (MCP server)

io.vascue/public-knowledge-search on the MCP Registry CI License: MIT public-knowledge-search MCP server

public-knowledge-search MCP server

A Model Context Protocol server that searches Vascue's public documentation: healthcare operations, the AI front desk for clinics, provider-side insurance claims automation, Cliniko integration, security, case studies and pricing.

It comes in two equivalent forms:

  • Hosted (always current): https://www.vascue.io/mcp/search - streamable HTTP, no authentication.

  • Self-contained (this repo): python server.py - local BM25 search over a bundled snapshot of the public pages (content/, refreshed per release with scripts/fetch_content.py). No network calls at runtime, so it also works offline and is what directory-built releases run.

  • Endpoint: https://www.vascue.io/mcp/search (streamable HTTP, no authentication)

  • Server card: https://www.vascue.io/.well-known/mcp/server-card.json

  • Registry name: io.vascue/public-knowledge-search

  • Operated by: Vascue Limited (ISO 27001 certified)

Public content only. This server indexes public product and educational pages. Never send patient information, claim documents, clinic credentials or booking requests to it. Agent-based clinic booking is a separate research pilot, not a public API.

Connect

Any MCP client that speaks streamable HTTP can connect to the endpoint directly.

Claude Code

claude mcp add --transport http vascue-search https://www.vascue.io/mcp/search

Cursor / Claude Desktop / other stdio-only clients (via mcp-remote)

{
  "mcpServers": {
    "vascue-search": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.vascue.io/mcp/search"]
    }
  }
}

Self-contained local server (stdio; bundled snapshot, no network)

pip install -r requirements.txt
python server.py

Docker (builds the self-contained server)

docker build -t vascue-public-knowledge-search .
docker run -i --rm vascue-public-knowledge-search

Tools

One tool, no authentication, read-only.

search

Hybrid (keyword + vector) search over Vascue's public pages. Returns matching excerpts with their canonical https://www.vascue.io/... URLs so answers can cite the source.

InputTypeNotes
querystring (required)Natural-language question or keywords, e.g. "how does Vascue handle insurance claim pre-authorisation".
ai_search_options.retrieval.retrieval_type"hybrid" | "vector" | "keyword"Default hybrid.
ai_search_options.retrieval.max_num_resultsinteger 1–50Default 8.
ai_search_options.retrieval.match_thresholdnumber 0–1Default 0.35.
ai_search_options.retrieval.context_expansioninteger 0–3Neighbouring chunks to include.

Query rewriting and reranking are disabled server-side; the server returns source chunks only and never a generated answer, so nothing is presented as a Vascue statement without a citation. Rate limit: 60 requests per minute per client.

Example call:

{ "name": "search", "arguments": { "query": "Cliniko integration for AI front desk" } }

The endpoint is backed by a Cloudflare AI Search instance over the approved public Markdown export of vascue.io (the service descriptor at https://www.vascue.io/.well-known/ai-search.json states what is and is not indexed).

Development

docker build -t vascue-public-knowledge-search .
node scripts/smoke.mjs docker run -i --rm vascue-public-knowledge-search   # initialize -> tools/list
node scripts/smoke.mjs npx -y mcp-remote https://www.vascue.io/mcp/search --transport http-only

CI runs the same build and smoke test on every push and weekly, so the badge above doubles as an endpoint health indicator.

Directory build specs

Directories that build the server from source (e.g. Glama) run the self-contained form. Generated build images vary (uv-managed Python without pip, or a PEP 668 externally-managed system Python), so use an explicit venv:

  • Build steps: ["uv venv /opt/venv && uv pip install --python /opt/venv/bin/python -r requirements.txt"]
  • CMD: ["/opt/venv/bin/python", "server.py"]
  • No environment variables.

Where a normal pip exists, plain pip install -r requirements.txt + ["python", "server.py"] works too.

pip install -r requirements.txt
SMOKE_CALL_QUERY="Cliniko integration" node scripts/smoke.mjs python server.py   # local server
node scripts/smoke.mjs python bridge.py                                          # stdio bridge to the hosted endpoint
python scripts/fetch_content.py                                                  # refresh the content/ snapshot

Other machine-readable surfaces

  • https://www.vascue.io/llms.txt
  • https://www.vascue.io/openapi.json (public, read-only content API)
  • https://www.vascue.io/.well-known/agent-skills/index.json (agent skills; also at vascue-io/skills)

Licence

This repository (README, manifest, Dockerfile) is MIT licensed. The content served by the endpoint is Vascue's public website content.

Reviews

No reviews yet

Be the first to review this server!