mcp-proxy 0.3.1

Standalone MCP proxy -- config-driven reverse proxy with auth, rate limiting, and observability
Documentation
# Test config with capability filtering

[gateway]
name = "filter-gateway"
version = "0.1.0"
separator = "/"

[gateway.listen]
host = "127.0.0.1"
port = 8082

[[backends]]
name = "files"
transport = "stdio"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-filesystem", "/private/tmp"]

# Only expose read-only tools
expose_tools = ["read_file", "list_directory", "get_file_info", "search_files", "list_allowed_directories"]

[backends.timeout]
seconds = 30

[observability]
audit = true
log_level = "debug"