-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detailed Stats page + HTTP Support #227
Open
QuantGeekDev
wants to merge
19
commits into
modelcontextprotocol:main
Choose a base branch
from
QuantGeekDev:feat/http-and-stats
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
2cb025a
feat: add http streaming with json responses
QuantGeekDev ae21eca
Update README with MCP Debug fork features
QuantGeekDev fed7ae5
Rename package and CLI to mcp-debug
QuantGeekDev 80d5dc7
Fix package dependencies and CLI arguments handling
QuantGeekDev 5cf85a5
Add missing dependencies for Node.js 18 compatibility
QuantGeekDev 7aa799f
Bump version to 0.7.1
QuantGeekDev c4a675e
Remove enhanced features log and bump version to 0.7.2
QuantGeekDev 55d870d
add direct http transport
QuantGeekDev 930d254
feat: add stats page
QuantGeekDev 11d536e
fix: type errors in StreamableHttpStats.tsx
QuantGeekDev 4f5fcd4
Merge pull request #1 from QuantGeekDev/feat/http-and-stats
QuantGeekDev c8e72be
Merge branch 'main' into feat/http-and-stats
QuantGeekDev 72f3356
Merge branch 'main' of https://github.com/modelcontextprotocol/inspector
QuantGeekDev 09d7ff5
fix: restore makeRequest wrapper and fix build errors
QuantGeekDev 0b2c150
fix: make SamplingTab handlers optional and fix useConnection type co…
QuantGeekDev cd424b1
Fix HTTP transport handling in useConnection hook
QuantGeekDev 80ac236
Merge pull request #2 from QuantGeekDev/http-fixes-for-pr
QuantGeekDev 2e0b30b
Merge HTTP fixes and better error handling from fork
QuantGeekDev aedb7da
Change package name to @modelcontextprotocol/inspector-server and ver…
QuantGeekDev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ async function main() { | |
const CLIENT_PORT = process.env.CLIENT_PORT ?? "5173"; | ||
const SERVER_PORT = process.env.SERVER_PORT ?? "3000"; | ||
|
||
console.log("Starting MCP inspector..."); | ||
console.log("Starting MCP Debug inspector..."); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔙 |
||
|
||
const abort = new AbortController(); | ||
|
||
|
@@ -79,7 +79,7 @@ async function main() { | |
[ | ||
inspectorServerPath, | ||
...(command ? [`--env`, command] : []), | ||
...(mcpServerArgs ? [`--args=${mcpServerArgs.join(" ")}`] : []), | ||
...(mcpServerArgs.length > 0 ? [`--args=${mcpServerArgs.join(" ")}`] : []), | ||
], | ||
{ | ||
env: { | ||
|
@@ -102,7 +102,7 @@ async function main() { | |
await Promise.any([server, client, delay(2 * 1000)]); | ||
const portParam = SERVER_PORT === "3000" ? "" : `?proxyPort=${SERVER_PORT}`; | ||
console.log( | ||
`\n🔍 MCP Inspector is up and running at http://127.0.0.1:${CLIENT_PORT}${portParam} 🚀`, | ||
`\n🔍 MCP Debug Inspector is up and running at http://127.0.0.1:${CLIENT_PORT}${portParam} 🚀`, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔙 |
||
); | ||
|
||
try { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "@modelcontextprotocol/inspector-client", | ||
"version": "0.7.0", | ||
"description": "Client-side application for the Model Context Protocol inspector", | ||
"name": "mcp-debug-client", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔙 all this file |
||
"version": "0.7.2", | ||
"description": "Client-side application for the Model Context Protocol debug inspector", | ||
"license": "MIT", | ||
"author": "Anthropic, PBC (https://anthropic.com)", | ||
"author": "Anthropic, PBC (https://anthropic.com) and contributors", | ||
"homepage": "https://modelcontextprotocol.io", | ||
"bugs": "https://github.com/modelcontextprotocol/inspector/issues", | ||
"bugs": "https://github.com/QuantGeekDev/mcp-debug/issues", | ||
"type": "module", | ||
"bin": { | ||
"mcp-inspector-client": "./bin/cli.js" | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔙