Skip to main content
Glama
m-murty

Webget MCP

by m-murty

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
WEBGET_BASE_URLNoWebget API base URL (change for staging environments)https://saas.increff.com/webget/in/api
WEBGET_CHROME_PATHNoChrome binary location on Linux/Windows (macOS default is used otherwise)/Applications/Google Chrome.app/Contents/MacOS/Google Chrome

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_databasesA

List database servers the user can access, with dbId and dbType (MYSQL or MONGODB).

get_schemasA

List schemas (MySQL) or databases (MongoDB) on a server. Use list_databases first to get dbId.

get_tablesA

List tables->columns (MySQL) or collections->fields (MongoDB) in one schema. Returns a map of object name to column/field list.

run_queryA

Run a SQL or MongoDB query against a server. MySQL: full SQL, must start with 'use ;' or reference schema-qualified names. Returns TSV text. MongoDB: db.collection.find()/aggregate() style query, returns JSON text.

loginA

Open browser for Webget Google login. Only needed if calls fail with auth errors; normally the first API call auto-triggers this.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct level of database interaction: servers, schemas, tables, query execution, and authentication. No two tools overlap in purpose, and the descriptions clearly delineate their roles.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (list_databases, get_schemas, get_tables, run_query). The single exception 'login' is a standard verb-only action but does not create confusion, and the overall style is uniform.

Tool Count5/5

Five tools is ideal for a database access server: three for navigation, one for execution, and one for auth. Each tool serves a necessary purpose without redundancy or bloat.

Completeness5/5

The toolset covers the full discovery-to-query workflow across both MySQL and MongoDB. It provides schema enumeration, table/collection inspection, and arbitrary query execution, with login as a fallback for auth. There are no obvious gaps for the stated purpose.

Maintenance

ActivityMaintained
ResponsivenessNo issues