Skip to content

Commit 6637cf2

Browse files
Merge branch 'main' into working-dir-support
2 parents 6883e89 + 2056622 commit 6637cf2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3332
-328
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@ If applicable, add screenshots to help explain your problem.
3434

3535
**Additional context**
3636
Add any other context about the problem here.
37+
38+
**Version Consideration**
39+
40+
Inspector V2 is under development to address architectural and UX improvements. During this time, V1 contributions should focus on **bug fixes and MCP spec compliance**. See [CONTRIBUTING.md](../../CONTRIBUTING.md) for more details.

.github/pull_request_template.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
## Summary
2+
3+
<!-- Provide a brief description of what this PR does -->
4+
5+
> **Note:** Inspector V2 is under development to address architectural and UX improvements. During this time, V1 contributions should focus on **bug fixes and MCP spec compliance**. See [CONTRIBUTING.md](../CONTRIBUTING.md) for more details.
6+
7+
## Type of Change
8+
9+
<!-- Mark the relevant option with an "x" -->
10+
11+
- [ ] Bug fix (non-breaking change that fixes an issue)
12+
- [ ] New feature (non-breaking change that adds functionality)
13+
- [ ] Documentation update
14+
- [ ] Refactoring (no functional changes)
15+
- [ ] Test updates
16+
- [ ] Build/CI improvements
17+
18+
## Changes Made
19+
20+
<!-- Describe the changes in detail. Include screenshots/recordings if applicable -->
21+
22+
## Related Issues
23+
24+
<!-- Link to related issues using #issue_number or "Fixes #issue_number" -->
25+
26+
## Testing
27+
28+
<!-- Describe how you tested these changes, where applicable -->
29+
30+
- [ ] Tested in UI mode
31+
- [ ] Tested in CLI mode
32+
- [ ] Tested with STDIO transport
33+
- [ ] Tested with SSE transport
34+
- [ ] Tested with Streamable HTTP transport
35+
- [ ] Added/updated automated tests
36+
- [ ] Manual testing performed
37+
38+
### Test Results and/or Instructions
39+
40+
<!-- Provide steps for reviewers to test your changes -->
41+
42+
Screenshots are encouraged to share your testing results for this change.
43+
44+
## Checklist
45+
46+
- [ ] Code follows the style guidelines (ran `npm run prettier-fix`)
47+
- [ ] Self-review completed
48+
- [ ] Code is commented where necessary
49+
- [ ] Documentation updated (README, comments, etc.)
50+
51+
## Breaking Changes
52+
53+
<!-- If this is a breaking change, describe the impact and migration path -->
54+
55+
## Additional Context
56+
57+
<!-- Add any other context, screenshots, or information about the PR here -->

.github/workflows/claude.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Run Claude Code
3636
id: claude
37-
uses: anthropics/claude-code-action@beta
37+
uses: anthropics/claude-code-action@v1
3838
with:
3939
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
4040

@@ -45,9 +45,6 @@ jobs:
4545
# Trigger when assigned to an issue
4646
assignee_trigger: "claude"
4747

48-
# Allow Claude to run bash
49-
# This should be safe given the repo is already public
50-
allowed_tools: "Bash"
51-
52-
custom_instructions: |
53-
If posting a comment to GitHub, give a concise summary of the comment at the top and put all the details in a <details> block.
48+
claude_args: |
49+
--allowedTools Bash
50+
--system-prompt "If posting a comment to GitHub, give a concise summary of the comment at the top and put all the details in a <details> block."

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ client/tsconfig.node.tsbuildinfo
1010
cli/build
1111
test-output
1212
tool-test-output
13+
metadata-test-output
1314
# symlinked by `npm run link:sdk`:
1415
sdk
1516
client/playwright-report/

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# MCP Inspector Development Guide
22

3+
> **Note:** Inspector V2 is under development to address architectural and UX improvements. During this time, V1 contributions should focus on **bug fixes and MCP spec compliance**. See [CONTRIBUTING.md](CONTRIBUTING.md) for more details.
4+
35
## Build Commands
46

57
- Build all: `npm run build`

CONTRIBUTING.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ Thanks for your interest in contributing! This guide explains how to get involve
99
3. Run `npm run dev` to start both client and server in development mode
1010
4. Use the web UI at http://localhost:6274 to interact with the inspector
1111

12+
## Inspector V2 Development
13+
14+
We're actively developing **Inspector V2** to address architectural and UX improvements. We invite you to follow progress and participate in the Inspector V2 Working Group in [Discord](https://modelcontextprotocol.io/community/communication), [weekly meetings](https://meet.modelcontextprotocol.io/tag/inspector-v2-wg), and [GitHub Discussions](https://github.com/modelcontextprotocol/modelcontextprotocol/discussions/categories/meeting-notes-other) (where notes are posted after meetings).
15+
16+
**Current version (V1) contribution scope:**
17+
18+
- Bug fixes and MCP spec compliance are actively maintained
19+
- Documentation updates are always appreciated
20+
- Major changes will be directed to V2 development
21+
1222
## Development Process & Pull Requests
1323

1424
1. Create a new branch for your changes
@@ -30,7 +40,7 @@ If you find a security vulnerability, please refer to our [Security Policy](SECU
3040

3141
## Questions?
3242

33-
Feel free to [open an issue](https://github.com/modelcontextprotocol/mcp-inspector/issues) for questions or create a discussion for general topics.
43+
Feel free to [open an issue](https://github.com/modelcontextprotocol/inspector/issues) for questions or join the MCP Contributor [Discord server](https://modelcontextprotocol.io/community/communication). Also, please see notes above on Inspector V2 Development.
3444

3545
## License
3646

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-cli",
3-
"version": "0.17.2",
3+
"version": "0.17.5",
44
"description": "CLI for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

0 commit comments

Comments
 (0)