Skip to main content
Glama
nickweedon

Skeleton MCP Server

by nickweedon

Playwright MCP Proxy

A proxy server for Microsoft's playwright-mcp that provides efficient handling of large binary data (screenshots, PDFs) through blob storage and supports browser pools for concurrent operations.

Version 2.0.0: Now with browser pools! Run multiple isolated browser instances with different configurations simultaneously.

Features

  • Browser Pools: Multiple isolated browser instances organized into named pools with different configurations

  • Concurrent Operations: Lease browser instances for exclusive use, enabling parallel browser automation

  • Playwright Browser Automation: Full access to all playwright-mcp browser automation tools

  • Stealth Mode: Built-in anti-detection capabilities (see STEALTH.md)

  • Efficient Binary Handling: Large screenshots and PDFs automatically stored as blobs to reduce token usage

  • Blob Storage: Built-in blob management using mcp-mapped-resource-lib

  • Automatic Cleanup: TTL-based automatic expiration of old blobs

  • Docker Support: Containerized deployment with multi-runtime support (Python + Node.js + Playwright)

  • Health Monitoring: Real-time pool status and instance health checks

Related MCP server: MCP Server Template

Quick Start

Prerequisites

  • Python 3.10 or higher

  • Node.js 18+ (for playwright-mcp)

  • uv package manager (recommended)

  • Docker (optional, for containerized deployment)

Installation

  1. Clone this repository:

git clone <this-repo> playwright-proxy-mcp
cd playwright-proxy-mcp
  1. Install dependencies:

uv sync
  1. Create your environment file:

cp .env.example.single-pool .env
# Edit .env with your configuration
  1. Run the server:

uv run playwright-proxy-mcp

The server will:

  • Start the playwright-mcp subprocess(es) via npx

  • Initialize blob storage

  • Initialize browser pools

  • Listen for MCP client connections on stdio

Browser Pools

Overview

Browser pools allow you to run multiple browser instances with different configurations:

# Global defaults (apply to all pools)
PW_MCP_PROXY_BROWSER=chromium
PW_MCP_PROXY_HEADLESS=true

# Define a pool with 3 instances
PW_MCP_PROXY__DEFAULT_INSTANCES=3
PW_MCP_PROXY__DEFAULT_IS_DEFAULT=true
PW_MCP_PROXY__DEFAULT_DESCRIPTION="General purpose browsing"

# Instance-level overrides
PW_MCP_PROXY__DEFAULT__0_BROWSER=firefox      # Instance 0 uses Firefox
PW_MCP_PROXY__DEFAULT__1_ALIAS=debug          # Instance 1 has alias "debug"
PW_MCP_PROXY__DEFAULT__1_HEADLESS=false       # Instance 1 runs headed

Using Pools

All browser tools accept optional browser_pool and browser_instance parameters:

# Use default pool, FIFO instance selection
await browser_navigate(url="https://example.com")

# Use specific pool
await browser_navigate(url="https://example.com", browser_pool="FIREFOX")

# Use specific instance by alias
await browser_navigate(url="https://example.com", browser_instance="debug")

Monitoring Pools

# Get status of all pools
status = await browser_pool_status()
for pool in status["pools"]:
    print(f"{pool['name']}: {pool['available_instances']}/{pool['total_instances']} available")

See docs/BROWSER_POOLS_SPEC.md for complete configuration reference.

Docker Deployment

Build and run with Docker Compose:

docker compose up -d

This will:

  • Build a container with Python, Node.js, and Playwright browsers

  • Create persistent volumes for blob storage and playwright output

  • Start the proxy server

Configuration

Configure the proxy via environment variables in .env:

Global Browser Settings

  • PW_MCP_PROXY_BROWSER: Browser to use (chromium, firefox, webkit) - default: chromium

  • PW_MCP_PROXY_HEADLESS: Run headless - default: true

  • PW_MCP_PROXY_CAPS: Capabilities (vision,pdf,testing,tracing) - default: vision,pdf

  • PW_MCP_PROXY_TIMEOUT_ACTION: Action timeout in ms - default: 15000

  • PW_MCP_PROXY_TIMEOUT_NAVIGATION: Navigation timeout in ms - default: 30000

Pool Configuration

  • PW_MCP_PROXY__<POOL>_INSTANCES: Number of instances in pool

  • PW_MCP_PROXY__<POOL>_IS_DEFAULT: Mark as default pool

  • PW_MCP_PROXY__<POOL>_DESCRIPTION: Pool description

  • PW_MCP_PROXY__<POOL>__<ID>_BROWSER: Browser for specific instance

  • PW_MCP_PROXY__<POOL>__<ID>_ALIAS: Alias for specific instance

  • PW_MCP_PROXY__<POOL>__<ID>_HEADLESS: Headless mode for specific instance

Stealth Settings (Anti-Detection)

  • PW_MCP_PROXY_ENABLE_STEALTH: Quick enable - Auto-configure stealth settings - default: false

  • PW_MCP_PROXY_USER_AGENT: Custom user agent string - optional

  • PW_MCP_PROXY_INIT_SCRIPT: Path to custom init script - optional

  • PW_MCP_PROXY_IGNORE_HTTPS_ERRORS: Ignore HTTPS errors - default: false

Tip: Simply set PW_MCP_PROXY_ENABLE_STEALTH=true to automatically enable anti-detection features!

See docs/STEALTH.md for detailed stealth configuration.

Blob Storage Settings

  • BLOB_STORAGE_ROOT: Storage directory - default: /mnt/blob-storage

  • BLOB_MAX_SIZE_MB: Max size per blob - default: 500

  • BLOB_TTL_HOURS: Time-to-live for blobs - default: 24

  • BLOB_SIZE_THRESHOLD_KB: Size threshold for blob storage - default: 50

  • BLOB_CLEANUP_INTERVAL_MINUTES: Cleanup frequency - default: 60

See example env files in the repository root for complete configuration examples.

How It Works

Binary Data Interception

The proxy automatically detects large binary data in playwright tool responses:

  1. When playwright tools return screenshots or PDFs

  2. If the data size exceeds the threshold (default: 50KB)

  3. The proxy stores the binary data as a blob

  4. The response is transformed to include a blob reference instead

Before (direct playwright-mcp):

{
  "screenshot": "data:image/png;base64,iVBORw0KGgo...500KB of data..."
}

After (through proxy):

{
  "screenshot": "blob://1733577600-a3f2c1d9e4b5.png",
  "screenshot_size_kb": 500,
  "screenshot_mime_type": "image/png",
  "screenshot_expires_at": "2024-12-08T10:00:00Z"
}

Retrieving Blobs

Blob retrieval is handled by a separate MCP Resource Server. See mcp-mapped-resource-lib for details.

Available Tools

Browser Tools

All playwright-mcp tools are available with browser pool support:

  • browser_navigate: Navigate to a URL

  • browser_click: Click an element

  • browser_fill: Fill a form field

  • browser_screenshot: Take a screenshot (auto-stored as blob if large)

  • browser_snapshot: Get ARIA snapshot

  • browser_evaluate: Execute JavaScript

  • And 40+ more tools...

All tools accept optional browser_pool and browser_instance parameters.

Pool Management

  • browser_pool_status(pool_name): Get pool health, lease activity, and instance status

Architecture

┌─────────────────────────────────┐
│  MCP Client (Claude Desktop)   │
└────────────┬────────────────────┘
             │ stdio
┌────────────▼────────────────────┐
│  FastMCP Proxy (Python)         │
│  - Pool Manager                 │
│  - Binary Interception          │
│  - Blob Storage Integration     │
│  - Instance Leasing (FIFO)      │
└────────────┬────────────────────┘
             │ stdio (per instance)
┌────────────▼────────────────────┐
│  playwright-mcp instances       │
│  - Browser Automation           │
│  - Screenshot/PDF Generation    │
└─────────────────────────────────┘

Testing

Run the test suite:

uv run pytest -v

Lint the code:

uv run ruff check src/ tests/
uv run ruff format src/ tests/

Project Structure

src/playwright_proxy_mcp/
├── server.py              # Main MCP proxy server
├── types.py               # TypedDict definitions
├── playwright/            # Playwright proxy components
│   ├── config.py         # Configuration loading (pool config)
│   ├── pool_manager.py   # Browser pool management
│   ├── process_manager.py # Subprocess management
│   ├── blob_manager.py   # Blob storage wrapper
│   ├── middleware.py     # Binary interception
│   └── proxy_client.py   # Stdio transport integration
└── utils/
    ├── navigation_cache.py     # TTL-based pagination cache
    ├── aria_processor.py       # ARIA snapshot processing
    └── jmespath_extensions.py  # Custom JMESPath functions

Benefits

Token Savings

Large screenshots can consume 50,000+ tokens. With blob storage:

  • Screenshots stored as blobs use ~100 tokens for the reference

  • Retrieve full data only when needed

  • Automatic cleanup prevents storage bloat

Concurrent Operations

Browser pools enable:

  • Parallel browser automation

  • Instance isolation for concurrent tasks

  • Different browser configurations for different use cases

Performance

  • Faster response times for tool calls

  • Reduced context window usage

  • Efficient deduplication of identical screenshots

  • FIFO instance leasing for fair resource allocation

Troubleshooting

npx not found

Ensure Node.js is installed and npx is in your PATH:

node --version
npx --version

Playwright browser installation fails

Install browsers manually:

npx playwright@latest install chromium --with-deps

Blob storage permissions

Ensure the blob storage directory is writable:

chmod -R 755 /mnt/blob-storage

Pool not starting

Check the pool configuration in your .env file. Ensure:

  • At least one pool has IS_DEFAULT=true

  • Instance counts are valid (positive integers)

  • No alias conflicts with numeric instance IDs

License

MIT

Contributing

Contributions welcome! Please open an issue or pull request.

Resources

Available Tools

6 tools
create_itemB

Create a new item.

Args: name: The name of the item (required) description: Optional description metadata: Optional key-value metadata

Returns: The created item data including the generated ID

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
descriptionNo
metadataNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a creation operation but doesn't mention permission requirements, whether the operation is idempotent, potential side effects, rate limits, or error handling. The return statement is helpful but doesn't fully compensate for the lack of behavioral context in a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly structured with clear sections: a one-sentence purpose statement, organized parameter documentation, and a return value description. Every sentence earns its place, and the information is front-loaded with the most important details first. No wasted words or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given this is a mutation tool with no annotations but with an output schema (implied by 'Returns' statement), the description covers the basics: purpose, parameters, and return value. However, for a creation operation, it lacks important context about authentication needs, error conditions, and behavioral constraints that would help the agent use it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description must compensate, and it does so effectively by documenting all 3 parameters with their purposes and requirements. It clearly distinguishes required vs optional parameters and provides meaningful context about what each parameter represents, going well beyond what the bare schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Create' and resource 'new item', making the purpose immediately understandable. It distinguishes from siblings like 'get_item' or 'update_item' by specifying creation rather than retrieval or modification. However, it doesn't specify what type of item or system this operates on, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'update_item' or when not to use it. There's no mention of prerequisites, error conditions, or typical use cases. The agent must infer usage from the tool name alone, which is insufficient for optimal selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

delete_itemC

Delete an item.

Args: item_id: The unique identifier of the item to delete

Returns: A confirmation message

Raises: ValueError: If the item is not found

ParametersJSON Schema
NameRequiredDescriptionDefault
item_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. While it mentions the destructive nature ('Delete') and error conditions, it doesn't address critical aspects like whether deletion is permanent, what permissions are required, rate limits, or side effects on related data. The 'Raises' section adds some value but doesn't fully compensate for the lack of annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (Args, Returns, Raises) and uses minimal words to convey essential information. Every sentence earns its place, though the core 'Delete an item' could be slightly more specific about what 'item' refers to in this context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given this is a destructive operation with no annotations, 0% schema coverage, but with an output schema (implied by 'Returns'), the description is moderately complete. It covers the basic operation, parameter, return value, and one error case, but lacks details on permissions, reversibility, and broader error handling that would be crucial for safe agent use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It provides the parameter name and clarifies it's 'The unique identifier of the item to delete,' which adds meaningful context beyond the bare schema. However, it doesn't specify format requirements (UUID, integer, etc.) or validation rules, leaving gaps in parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Delete') and resource ('an item'), making the purpose immediately understandable. However, it doesn't differentiate this destructive operation from its sibling 'update_item' which also modifies items, or explain what type of 'item' is being deleted (database record, file, etc.).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'update_item' for modification or 'create_item' for recreation. It mentions raising ValueError if the item is not found, but doesn't specify prerequisites like authentication needs or whether deletion is reversible.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_itemA

Get a specific item by ID.

Args: item_id: The unique identifier of the item

Returns: The item data if found

Raises: ValueError: If the item is not found

ParametersJSON Schema
NameRequiredDescriptionDefault
item_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses that the tool returns 'The item data if found' and raises 'ValueError: If the item is not found,' which adds useful context about success and error conditions. However, it lacks details on permissions, rate limits, or other behavioral traits like whether it's read-only or has side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded with the core purpose, followed by clear sections for Args, Returns, and Raises. Every sentence earns its place by providing essential information without redundancy. It is appropriately sized for a simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (one parameter) and the presence of an output schema (which handles return values), the description is mostly complete. It covers the purpose, parameter meaning, and error conditions. However, it lacks context on when to use versus siblings and behavioral details like auth needs, which could be improved for a tool in a set with create/delete/update operations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0% description coverage, but the description compensates by explaining the parameter: 'item_id: The unique identifier of the item.' This adds meaning beyond the schema's type definition. Since there is only one parameter, the description effectively covers it, though it could provide more details like format or examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get a specific item by ID.' It uses a specific verb ('Get') and resource ('item'), making it easy to understand. However, it does not explicitly differentiate from sibling tools like 'list_items' (which retrieves multiple items) or 'health_check' (which checks server status), though the specificity of 'by ID' implies a distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by stating 'Get a specific item by ID,' suggesting it should be used when you have a known item ID. However, it does not provide explicit guidance on when to use this tool versus alternatives like 'list_items' (for browsing items) or 'create_item' (for adding new items). No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

health_checkB

Check the health status of the MCP server.

Returns: A dictionary with the server status and configuration info.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It states what the tool does but doesn't disclose behavioral traits like whether this requires authentication, has rate limits, or what specific 'configuration info' is returned. The mention of return format is helpful but insufficient for a mutation-free tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized with two sentences: one stating the purpose, one describing the return format. It's front-loaded with the core functionality. The second sentence about returns could potentially be omitted since there's an output schema, but it's still useful context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given this is a simple health check tool with 0 parameters and an output schema, the description is adequate but has gaps. It explains what the tool does and the return format, but doesn't provide context about when to use it or behavioral considerations. With output schema handling return values, the description doesn't need to explain those details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0 parameters and 100% schema description coverage, the baseline would be 4. The description correctly indicates this is a parameterless health check, which aligns perfectly with the empty input schema. No additional parameter information is needed or provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Check') and resource ('health status of the MCP server'), making the purpose unambiguous. It doesn't explicitly differentiate from siblings like 'get_item' or 'list_items', but health checking is sufficiently distinct from CRUD operations that differentiation is implied rather than explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this should be used for health monitoring rather than data operations, but doesn't provide explicit guidance on when to use it versus alternatives. Given the sibling tools are all CRUD operations for 'item', the context suggests this is for server diagnostics rather than data manipulation, but this isn't explicitly stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_itemsA

List all items with optional filtering and pagination.

Args: page: Page number (1-indexed) page_size: Number of items per page filter_name: Optional filter by name (case-insensitive contains)

Returns: A dictionary containing: - items: List of item objects - total: Total number of items matching the filter - page: Current page number - page_size: Number of items per page

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo
page_sizeNo
filter_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It discloses pagination behavior (1-indexed page, returns metadata) and filtering (case-insensitive contains), but doesn't mention rate limits, authentication needs, error conditions, or whether this is a read-only operation (though 'List' implies safe read).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-structured with a clear summary sentence followed by Args/Returns sections. Every sentence adds value, though the Returns section could be slightly more concise given the output schema exists.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Good completeness for a list tool: purpose, parameters, and return structure are documented. With output schema present, the Returns description is somewhat redundant but helpful. Missing behavioral aspects like error handling or performance characteristics keep it from a 5.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description fully compensates by explaining all 3 parameters: page (1-indexed), page_size (items per page), and filter_name (case-insensitive contains, optional). It adds crucial semantic details not in the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and resource 'items', specifying optional filtering and pagination. It distinguishes from siblings like get_item (single item) and create_item/update_item/delete_item (mutations), but doesn't explicitly contrast with search or other list variants that might exist.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving multiple items with filtering/pagination, but doesn't explicitly state when to use this vs. get_item (single item) or when filtering/pagination is appropriate. No alternatives or exclusions are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_itemB

Update an existing item.

Args: item_id: The unique identifier of the item to update name: New name (optional) description: New description (optional) metadata: New metadata (optional, replaces existing)

Returns: The updated item data

Raises: ValueError: If the item is not found

ParametersJSON Schema
NameRequiredDescriptionDefault
item_idYes
nameNo
descriptionNo
metadataNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It discloses that this is a mutation operation ('Update'), mentions the 'ValueError' for not found items, and notes that metadata 'replaces existing'. However, it lacks details about permissions, side effects, rate limits, or what 'updated item data' contains, leaving behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with sections for Args, Returns, and Raises, making it easy to scan. Every sentence adds value—no fluff or repetition. It's appropriately sized for a tool with 4 parameters and clear output.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters, 0% schema coverage, no annotations, but an output schema exists, the description is moderately complete. It covers basic parameter meanings and error handling, but lacks context on sibling differentiation, permissions, or detailed behavioral traits, making it adequate but with gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics: 'item_id' is 'unique identifier', parameters are optional with 'new' values, and metadata 'replaces existing'. This clarifies beyond the schema's types and defaults, though it doesn't cover all parameter nuances like format constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Update' and resource 'existing item', making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'create_item' or 'delete_item' beyond the basic verb difference, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'create_item' or 'delete_item'. It mentions that 'item_id' is required and parameters are optional, but offers no context about prerequisites, error conditions beyond 'ValueError', or comparison to siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

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

  1. 6 tool updatesv1.0.0
    • First observedcreate_item
    • First observeddelete_item
    • First observedget_item
    • First observedhealth_check
    • First observedlist_items
    • First observedupdate_item

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: create_item, delete_item, get_item, list_items, and update_item form a complete CRUD set for items, while health_check is a separate server management tool. The descriptions reinforce distinct actions on specific resources, eliminating any ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case throughout: create_item, delete_item, get_item, health_check, list_items, update_item. The naming is predictable and readable, with no deviations in style or convention.

Tool Count5/5

With 6 tools, this server is well-scoped for managing items and checking server health. The count is appropriate, providing full CRUD operations plus a utility tool without being overly complex or insufficient for the domain.

Completeness5/5

The tool surface is complete for the item management domain, covering create, read (get and list), update, and delete operations with proper pagination and filtering. The health_check tool adds server monitoring, leaving no obvious gaps for core workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A comprehensive template for building Model Context Protocol servers with FastMCP framework, featuring modular architecture, auto-discovery registry, and support for multiple transport methods. Includes example arithmetic and weather tools to help developers quickly create custom MCP servers.
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    A minimal, dockerized template for creating HTTP-based Model Context Protocol servers. Provides a starting point with FastMCP framework integration and includes a sample cat fact tool that can be replaced with custom functionality.
    -
  • A
    license
    A
    quality
    D
    maintenance
    A template project for building Model Context Protocol servers with FastMCP framework, Docker support, and example CRUD API implementation to help developers quickly bootstrap their own MCP servers.
    6
    MIT

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/nickweedon/playwright-proxy-mcp'

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