{"id":27693064,"url":"https://github.com/emicklei/mcp-log-proxy","last_synced_at":"2025-04-25T12:49:25.757Z","repository":{"id":289273848,"uuid":"969847598","full_name":"emicklei/mcp-log-proxy","owner":"emicklei","description":"a web logging proxy for MCP client-server communication","archived":false,"fork":false,"pushed_at":"2025-04-22T12:37:18.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-22T13:31:39.865Z","etag":null,"topics":["debug","golang","mcp-server","mcp-tools"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emicklei.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-21T03:13:07.000Z","updated_at":"2025-04-22T12:37:22.000Z","dependencies_parsed_at":"2025-04-22T13:31:44.950Z","dependency_job_id":"aacd87aa-badc-4e4e-af72-2356ac2a0aec","html_url":"https://github.com/emicklei/mcp-log-proxy","commit_stats":null,"previous_names":["emicklei/mcp-log-proxy"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emicklei%2Fmcp-log-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emicklei%2Fmcp-log-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emicklei%2Fmcp-log-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emicklei%2Fmcp-log-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emicklei","download_url":"https://codeload.github.com/emicklei/mcp-log-proxy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250822373,"owners_count":21492901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["debug","golang","mcp-server","mcp-tools"],"created_at":"2025-04-25T12:49:23.668Z","updated_at":"2025-04-25T12:49:25.744Z","avatar_url":"https://github.com/emicklei.png","language":"Go","funding_links":[],"categories":["Monitoring \u0026 Observability","Testing \u0026 Debugging Tools","پیاده‌سازی‌های سرور","📦 Other","📚 Projects (2474 total)","Utilities","Go","Server Implementations"],"sub_categories":["Video","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eسایر ابزارها و یکپارچه‌سازی‌ها","MCP Servers","Proxies and Gateways","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eOther Tools and Integrations"],"readme":"## mcp-log-proxy\n\n`mcp-log-proxy` can be used to see the messages to and from a MCP client and a MCP server using a Web interface.\n\nCurrently, it only supports the STDIO interface.\n\n![web log view](doc/screenshot1.png)\n\n## install\n\n    go install github.com/emicklei/mcp-log-proxy@latest\n\n### usage\n\n`mcp-log-proxy` requires one argument `-command` that contains the full command line for starting the MCP server.\n\nFor example, to proxy traffic to the `melrose-mcp` server, the full command is:\n\n    mcp-log-proxy -command melrose-mcp\n\nThis example assumes that both tools are available on your execution PATH.\n\nOnce the proxy is started, messages can be viewed on `http:/localhost:5656`.\n\n#### optional flags\n\nYou can override the Web page title using the `title` flag:\n\n    mcp-log-proxy -command melrose-mcp -title \"Melrōse (proxy)\"   \n\nYou can override the HTTP port(default 5656) using the `port` flag:\n\n    mcp-log-proxy -command melrose-mcp -port 9999\n\nYou can set override the log file location of the proxy that captures errors in the proxy itself.\n\n    mcp-log-proxy -command melrose-mcp -log /your/logs/mcp-log-proxy.log\n\nYou can set the browser page title using the `title` flag:\n\n    mcp-log-proxy -command melrose-mcp -title \"Melrose MCP proxy\"\n\n### Claude examples\n\nThis example proxies the use of the `melrose-mcp` server.\n\n    \"melrōse\": {\n      \"command\": \"/Users/emicklei/go/bin/mcp-log-proxy\",\n      \"args\": [\n        \"-command\",\n        \"/Users/emicklei/go/bin/melrose-mcp -log /Users/emicklei/Documents/claude-melrose.log\",\n        \"-log\",\n        \"/Users/emicklei/Documents/claude-melrose-proxy.log\",\n        \"-port\",\n        \"7788\",\n        \"-title\",\n        \"Claude Melrose MCP\"\n      ]\n    },\n\nProxying the `browsermcp` server.\n\n    \"browsermcp\": {\n      \"command\": \"/Users/emicklei/go/bin/mcp-log-proxy\",\n      \"args\": [\n        \"-command\",\n        \"npx @browsermcp/mcp@latest\",\n        \"-log\",\n        \"/Users/emicklei/Documents/claude-browsermcp-proxy.log\",\n        \"-port\",\n        \"7799\",\n        \"-title\",\n        \"Claude Browser MCP\"\n      ]\n    }\n\n\u0026copy; 2025, https://ernestmicklei.com. MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femicklei%2Fmcp-log-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femicklei%2Fmcp-log-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femicklei%2Fmcp-log-proxy/lists"}