Skip to main content
Glama
vascue-io

Vascue Public Knowledge Search

Official

Vascue 공개 지식 검색 (MCP 서버)

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

public-knowledge-search MCP server

Vascue의 공개 문서(의료 운영, 클리닉용 AI 프런트 데스크, 공급자 측 보험 청구 자동화, Cliniko 통합, 보안, 사례 연구 및 요금)를 검색하는 Model Context Protocol 서버입니다.

두 가지 동등한 형태로 제공됩니다:

  • 호스팅(항상 최신): https://www.vascue.io/mcp/search - 스트리밍 HTTP, 인증 불필요.

  • 자체 포함(이 저장소): python server.py - 공개 페이지의 번들 스냅샷(content/, 릴리스마다 scripts/fetch_content.py로 갱신)에 대한 로컬 BM25 검색. 런타임에 네트워크 호출이 없으므로 오프라인에서도 작동하며, 디렉터리 기반 릴리스가 실행하는 형태입니다.

  • 엔드포인트: https://www.vascue.io/mcp/search (스트리밍 HTTP, 인증 불필요)

  • 서버 카드: https://www.vascue.io/.well-known/mcp/server-card.json

  • 레지스트리 이름: io.vascue/public-knowledge-search

  • 운영 주체: Vascue Limited (ISO 27001 인증)

공개 콘텐츠 전용입니다. 이 서버는 공개 제품 및 교육 페이지를 색인합니다. 환자 정보, 청구 문서, 클리닉 자격 증명 또는 예약 요청을 절대 보내지 마십시오. 에이전트 기반 클리닉 예약은 별도의 연구 파일럿이며 공개 API가 아닙니다.

연결

스트리밍 HTTP를 지원하는 모든 MCP 클라이언트는 엔드포인트에 직접 연결할 수 있습니다.

Claude Code

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

Cursor / Claude Desktop / 기타 stdio 전용 클라이언트 (mcp-remote 경유)

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

자체 포함 로컬 서버 (stdio, 번들 스냅샷, 네트워크 불필요)

pip install -r requirements.txt
python server.py

Docker (자체 포함 서버 빌드)

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

Related MCP server: Cliniko MCP Server

도구

도구 하나, 인증 불필요, 읽기 전용.

Vascue 공개 페이지에 대한 하이브리드(키워드 + 벡터) 검색. 일치하는 발췌문과 해당 정식 https://www.vascue.io/... URL을 반환하므로 답변이 출처를 인용할 수 있습니다.

입력

유형

참고

query

string (필수)

자연어 질문 또는 키워드(예: "Vascue가 보험 청구 사전 승인을 어떻게 처리하나요").

ai_search_options.retrieval.retrieval_type

"hybrid" | "vector" | "keyword"

기본값은 hybrid입니다.

ai_search_options.retrieval.max_num_results

integer 1–50

기본값은 8입니다.

ai_search_options.retrieval.match_threshold

number 0–1

기본값은 0.35입니다.

ai_search_options.retrieval.context_expansion

integer 0–3

포함할 인접 청크 수.

쿼리 재작성과 재순위화는 서버 측에서 비활성화되어 있습니다. 서버는 소스 청크만 반환하고 생성된 답변은 절대 반환하지 않으므로, 인용 없이 Vascue의 진술로 제시되는 내용은 없습니다. 속도 제한: 클라이언트당 분당 60회 요청.

호출 예시:

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

엔드포인트는 vascue.io의 승인된 공개 Markdown 내보내기에 대한 Cloudflare AI Search 인스턴스로 지원됩니다(https://www.vascue.io/.well-known/ai-search.json의 서비스 설명자에 색인 대상과 비대상이 명시되어 있습니다).

개발

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는 모든 푸시와 매주 동일한 빌드 및 스모크 테스트를 실행하므로, 위 배지는 엔드포인트 상태 표시기 역할을 겸합니다.

디렉터리 빌드 사양

소스에서 서버를 빌드하는 디렉터리(예: Glama)는 자체 포함 형태를 실행합니다. 생성된 빌드 이미지는 다양하므로(pip 없는 uv 관리 Python 또는 PEP 668 외부 관리 시스템 Python), 명시적 venv를 사용하십시오:

  • 빌드 단계: ["uv venv /opt/venv && uv pip install --python /opt/venv/bin/python -r requirements.txt"]

  • CMD: ["/opt/venv/bin/python", "server.py"]

  • 환경 변수 없음.

일반 pip가 있는 경우, 일반 pip install -r requirements.txt + ["python", "server.py"]도 작동합니다.

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

기타 기계 판독 가능 표면

  • https://www.vascue.io/llms.txt

  • https://www.vascue.io/openapi.json (공개, 읽기 전용 콘텐츠 API)

  • https://www.vascue.io/.well-known/agent-skills/index.json (에이전트 스킬, vascue-io/skills에도 있음)

라이선스

이 저장소(README, 매니페스트, Dockerfile)는 MIT 라이선스입니다. 엔드포인트가 제공하는 콘텐츠는 Vascue의 공개 웹사이트 콘텐츠입니다.

Available Tools

1 tool

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev0.1.0
    • First observedsearch

TDQS

A4.7/5.0
Disambiguation5/5

With only one tool, there is no risk of confusion between tools. The 'search' tool's purpose is unambiguous and clearly scoped to a specific domain (Vascue public knowledge).

Naming Consistency5/5

The single tool is named 'search', which is a simple, clear verb that perfectly matches its function. There is no inconsistency to evaluate, and the name is intuitive.

Tool Count4/5

The server provides exactly one tool, which is slightly below the typical 3-15 tool range. However, given the narrow purpose of 'Public Knowledge Search', a single search tool is well-scoped and earns its place, making the count appropriate.

Completeness5/5

The tool covers the entire domain of knowledge search for Vascue's public pages, including search, relevance ranking, and citation of sources. There are no obvious missing operations for its stated purpose; it is a complete, focused toolkit.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    F
    maintenance
    A Model Context Protocol server providing AI assistants with access to healthcare data tools, including FDA drug information, PubMed research, health topics, clinical trials, and medical terminology lookup.
    7
    78
    126
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables integration with the Cliniko practice management system through MCP tools and resources. Supports patient management, appointment scheduling, and practice data access through natural language interactions.
    -
  • F
    license
    B
    quality
    D
    maintenance
    Provides comprehensive integration with the Cliniko API for healthcare practice management, including patient, appointment, and invoice administration. It enables tools for complex clinical workflows and direct access to practice resources through the Model Context Protocol.
    27
    1
    -
  • F
    license
    B
    quality
    D
    maintenance
    Provides integration with the Cliniko API for healthcare practice management, enabling patient, appointment, invoice, and payment operations via natural language.
    27
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vascue-io/public-knowledge-search'

If you have feedback or need assistance with the MCP directory API, please join our Discord server