Skip to main content
Glama
chatre7yos

chatgpt-local-mcp-bridge

by chatre7yos

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CHATGPT_BRIDGE_WORKSPACEYesThe absolute path to the single workspace directory that the MCP bridge is allowed to access (read-only). Must be set to an explicit path; otherwise the bridge cannot determine its bounded root.

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
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
workspace_listA

Return the one configured, read-only workspace.

list_filesC

List safe files and directories under the configured workspace path.

read_fileA

Read a bounded UTF-8 text file under the configured workspace; secret-like paths are blocked.

search_textA

Search UTF-8 text recursively under the configured workspace while skipping generated and sensitive paths.

git_statusA

Return read-only Git status for the configured workspace.

git_diffA

Return the bounded read-only Git diff for the configured workspace.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 6 tools

Disambiguation4/5

Each tool has a distinct purpose: workspace info, file listing, file reading, text search, git status, and git diff. The only minor ambiguity is that workspace_list could be mistaken for a file-listing tool, but the description clarifies it.

Naming Consistency3/5

Names mix verb-first patterns like list_files and read_file with noun-phrase patterns like git_status and git_diff, plus the unusual workspace_list. All names are readable and consistently snake_case, but the convention is not uniform.

Tool Count5/5

Six tools is a well-scoped count for a read-only local workspace bridge. Each tool covers a necessary operation without redundancy or bloat.

Completeness4/5

The toolset covers the core read-only workspace needs: discover, list, read, search, and inspect git state. Minor gaps like file metadata or git log are not critical for the stated read-only purpose.

Maintenance

ActivityMaintained
ResponsivenessNo issues