{
"mcpServers": {
"mcp-partner-github-io": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A tool to help you debug MCP servers online
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 111 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Partner.Github.Io and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
English | 中文
一个类似 Postman 的工具,用于通过 SSE (Server-Sent Events) 或 Streamable HTTP 测试和交互 Model Context Protocol (MCP) 服务器。
点击此处直接访问
使用 Vercel 部署
Mcp Partner 还提供基于 wails 打包的桌面应用,支持 Windows、macOS 和 Linux 平台。
自带 cors proxy 功能, 解决浏览器跨域问题
| 1. 默认首页 | 2. 连接状态 & 工具调用 |
| :---: | :---: |
|
|
|
| 3. 历史记录 & 配置管理 | 4. 自动代理 |
| :---: | :---: |
|
|
|
由于浏览器的安全策略,网页应用直接访问本地 (localhost) 或不同域名的 MCP 服务器通常会遇到 CORS (跨域资源共享) 错误。
为了解决这个问题,MCP Partner 支持 3 种代理方式(点击连接栏右侧的盾牌图标 🛡️ 进行设置):
/cors?url= 作为代理前缀(使用本项目自带的 Edge Function)。https://corsproxy.io/?url=。如果您是 MCP 服务器的开发者,建议在服务器端正确配置 CORS 响应头,这样网页客户端就可以直接连接,无需使用代理。以下是一个完整的 CORS 配置示例:
// Go 语言示例
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS")
w.Header().Set("Access-Control-Allow-Headers", "*")
w.Header().Set("Access-Control-Expose-Headers", "*")
w.Header().Set("Access-Control-Allow-Credentials", "true")
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS
Access-Control-Allow-Headers: *
Content-Type 和 Mcp-Session-Id 等 headerAccess-Control-Expose-Headers: *
mcp-session-id 响应头Access-Control-Allow-Credentials: true
检查浏览器控制台错误
验证预检请求 (OPTIONS)
测试最小配置
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type, Mcp-Session-Id")
w.Header().Set("Access-Control-Expose-Headers", "Mcp-Session-Id")
检查 Session ID 传递
mcp-session-id header 来维持会话Access-Control-Expose-Headers 包含 Mcp-Session-Id[HTTP] Session ID captured: 日志临时解决方案
点击上方的 "Deploy with Vercel" 按钮即可一键部署,且自带 CORS 代理功能。
本项目已包含 GitHub Actions 自动部署工作流。