feat(bashkit-cli): Phase 10 - MCP server mode#11
Merged
Conversation
Add secure network access with URL allowlist: NetworkAllowlist: - Empty allowlist blocks all URLs by default - Pattern matching on scheme, host, port, and path prefix - Support for multiple patterns - Optional allow_all() for testing HttpClient (behind "network" feature): - GET, POST, PUT, DELETE, HEAD, PATCH methods - Request/response handling with body and headers - Automatic timeout (30s default) - All requests validated against allowlist Security: Network disabled by default, explicit opt-in required. https://claude.ai/code/session_01A16cD8ztbTJs2PB2iHe1Ua
Add MCP (Model Context Protocol) server support:
- JSON-RPC 2.0 server on stdin/stdout
- `bashkit mcp` subcommand to start server
- Exposes `bash` tool for script execution
- Standard MCP protocol (2024-11-05)
Supported methods:
- initialize: Return server capabilities
- tools/list: List available tools (bash)
- tools/call: Execute bash scripts
- shutdown: Clean shutdown
Usage:
```bash
bashkit mcp
```
Claude Desktop config:
```json
{"name": "bashkit", "command": "bashkit", "args": ["mcp"]}
```
https://claude.ai/code/session_01A16cD8ztbTJs2PB2iHe1Ua
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Add MCP (Model Context Protocol) server support to the CLI:
Features
bashkit mcpsubcommandbashtool for sandboxed script executionSupported Methods
initializetools/listtools/callshutdownUsage
Claude Desktop Config
{ "mcpServers": { "bashkit": { "command": "bashkit", "args": ["mcp"] } } }Test plan