Skip to main content
Glama

Vascue Public Knowledge Search

Server Details

Search Vascue's public healthcare-operations, insurance-claims and clinic-booking documentation. Public content only; never send patient data, credentials or booking requests.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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 update
    • Changedsearch15 fields changed
      • removedInput schema / $schema
        Removed value: -"http://json-schema.org/draft-07/schema#"
      • changedInput schema / properties / ai_search_options / description
        Previous value: -"Options for customizing the AI search behavior."New value: +"Optional retrieval tuning. Omit for the defaults: hybrid search, 8 results, score threshold 0.35."
      • removedInput schema / properties / ai_search_options / properties / cache
        Removed value: -{
        -  "properties": {
        -    "cache_threshold": {
        -      "type": "string"
        -    },
        -    "enabled": {
        -      "type": "boolean"
        -    }
        -  },
        -  "type": "object"
        -}
      • removedInput schema / properties / ai_search_options / properties / query_rewrite
        Removed value: -{
        -  "properties": {
        -    "enabled": {
        -      "const": false,
        -      "type": "boolean"
        -    },
        -    "rewrite_prompt": {
        -      "type": "string"
        -    }
        -  },
        -  "type": "object"
        -}
      • removedInput schema / properties / ai_search_options / properties / reranking
        Removed value: -{
        -  "properties": {
        -    "enabled": {
        -      "const": false,
        -      "type": "boolean"
        -    },
        -    "match_threshold": {
        -      "maximum": 1,
        -      "minimum": 0,
        -      "type": "number"
        -    }
        -  },
        -  "type": "object"
        -}
      • addedInput schema / properties / ai_search_options / properties / retrieval / properties / context_expansion / description
        Added value: +"Neighbouring chunks from the same page to include around each hit (default 0)."
      • removedInput schema / properties / ai_search_options / properties / retrieval / properties / filters
        Removed value: -{
        -  "additionalProperties": {
        -    "anyOf": [
        -      {
        -        "anyOf": [
        -          {
        -            "type": "string"
        -          },
        -          {
        -            "type": "number"
        -          },
        -          {
        -            "type": "boolean"
        -          },
        -          {
        -            "type": "null"
        -          }
        -        ]
        -      },
        -      {
        -        "properties": {
        -          "$eq": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              },
        -              {
        -                "type": "boolean"
        -              },
        -              {
        -                "type": "null"
        -              }
        -            ]
        -          },
        -          "$gt": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "$gte": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "$in": {
        -            "items": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "boolean"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ]
        -            },
        -            "type": "array"
        -          },
        -          "$lt": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "$lte": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              }
        -            ]
        -          },
        -          "$ne": {
        -            "anyOf": [
        -              {
        -                "type": "string"
        -              },
        -              {
        -                "type": "number"
        -              },
        -              {
        -                "type": "boolean"
        -              },
        -              {
        -                "type": "null"
        -              }
        -            ]
        -          },
        -          "$nin": {
        -            "items": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "number"
        -                },
        -                {
        -                  "type": "boolean"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ]
        -            },
        -            "type": "array"
        -          }
        -        },
        -        "type": "object"
        -      }
        -    ]
        -  },
        -  "propertyNames": {
        -    "type": "string"
        -  },
        -  "type": "object"
        -}
      • removedInput schema / properties / ai_search_options / properties / retrieval / properties / fusion_method
        Removed value: -{
        -  "enum": [
        -    "max",
        -    "rrf"
        -  ],
        -  "type": "string"
        -}
      • addedInput schema / properties / ai_search_options / properties / retrieval / properties / match_threshold / description
        Added value: +"Minimum relevance score for a chunk to be included (default 0.35); raise for precision, lower for recall."
      • addedInput schema / properties / ai_search_options / properties / retrieval / properties / max_num_results / description
        Added value: +"Maximum chunks to return (default 8)."
      • removedInput schema / properties / ai_search_options / properties / retrieval / properties / metadata_only
        Removed value: -{
        -  "type": "boolean"
        -}
      • addedInput schema / properties / ai_search_options / properties / retrieval / properties / retrieval_type / description
        Added value: +"hybrid (default) fuses keyword and vector ranking; keyword for exact phrases or product names; vector for paraphrased questions."
      • changedInput schema / properties / ai_search_options / properties / retrieval / properties / retrieval_type / enum
        Previous value: -[
        -  "vector",
        -  "keyword",
        -  "hybrid"
        -]New value: +[
        +  "hybrid",
        +  "vector",
        +  "keyword"
        +]
      • removedInput schema / properties / ai_search_options / properties / retrieval / properties / return_on_failure
        Removed value: -{
        -  "type": "boolean"
        -}
      • changedInput schema / properties / query / description
        Previous value: -"The input query."New value: +"What to look for, as a natural-language question or keywords, e.g. \"how does claims pre-authorisation work\" or \"Cliniko integration\". 3-15 words works best; one topic per call."
  2. 1 tool update
    • First observedsearch

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusion between tools. The sole 'search' tool has a clear, singular purpose that an agent can unambiguously select.

Naming Consistency5/5

The single tool name 'search' is a simple, predictable verb-form name. While there is no broader pattern to evaluate, it is internally consistent and clear on its own.

Tool Count3/5

A single search tool covers the core reading use case but feels minimal for a server that also receives off-topic queries and relies on score thresholds. Borderline-thin, yet appropriate if the scope is strictly a public knowledge search.

Completeness5/5

The tool fully addresses the stated purpose: hybrid keyword + semantic search over all indicated public pages. No other operations are expected for a read-only public knowledge search, so there are no obvious gaps.

Resources