-
Notifications
You must be signed in to change notification settings - Fork 7
feat: split MCP tools for Claude connector #101
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
fdb6ccc
feat: split MCP tools for Claude connector
freeznet e9ab4bf
fix: address PR review comments
freeznet 0291a91
fix: split mixed read write mcp tools
freeznet a37e2d4
fix: complete read write tool surface split
freeznet a6b91fc
refactor: centralize MCP operation specs
freeznet 7dd1a52
fix: refine MCP tool annotations
freeznet dc4cf00
chore: remove the PLAN.md file
freeznet ab88ad0
chore: add PLAN.md to .gitignore
freeznet 1b639d6
fix: address PR review comments
freeznet 5e4f077
fix(operation-docs): normalize line endings in test extractors
freeznet 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,11 @@ | ||
| #### kafka-admin-partitions | ||
|
|
||
| **Claude connector safety:** Actual MCP tool: `kafka_admin_partitions_write` (`update`). This write-only tool is not registered in read-only mode. | ||
|
|
||
|
|
||
| This tool provides access to Kafka partition operations, particularly adding partitions to existing topics. | ||
|
|
||
| - **partition** | ||
| - **update**: Update the number of partitions for an existing Kafka topic (can only increase, not decrease) | ||
| - `topic` (string, required): The name of the Kafka topic | ||
| - `new-total` (number, required): The new total number of partitions (must be greater than current) | ||
| - `new-total` (number, required): The new total number of partitions (must be greater than current) |
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,37 +1,40 @@ | ||
| #### pulsar_admin_namespace | ||
|
|
||
| **Claude connector safety:** Actual MCP tools: `pulsar_admin_namespace_read` (`list`, `get_topics`) and `pulsar_admin_namespace_write` (`create`, `delete`, `clear_backlog`, `unsubscribe`, `unload`, `split_bundle`). | ||
|
|
||
|
|
||
| Manage Pulsar namespaces with various operations. | ||
|
|
||
| - **list**: List all namespaces for a tenant | ||
| - `tenant` (string, required): The tenant name | ||
|
|
||
| - **get_topics**: Get all topics within a namespace | ||
| - `namespace` (string, required): The namespace name (format: tenant/namespace) | ||
|
|
||
| - **create**: Create a new namespace | ||
| - `namespace` (string, required): The namespace name (format: tenant/namespace) | ||
| - `bundles` (string, optional): Number of bundles to activate | ||
| - `clusters` (array, optional): List of clusters to assign | ||
|
|
||
| - **delete**: Delete a namespace | ||
| - `namespace` (string, required): The namespace name (format: tenant/namespace) | ||
|
|
||
| - **clear_backlog**: Clear backlog for all topics in a namespace | ||
| - `namespace` (string, required): The namespace name (format: tenant/namespace) | ||
| - `subscription` (string, optional): Subscription name | ||
| - `bundle` (string, optional): Bundle name or range | ||
| - `force` (string, optional): Force clear backlog (true/false) | ||
|
|
||
| - **unsubscribe**: Unsubscribe from a subscription for all topics in a namespace | ||
| - `namespace` (string, required): The namespace name (format: tenant/namespace) | ||
| - `subscription` (string, required): Subscription name | ||
| - `bundle` (string, optional): Bundle name or range | ||
|
|
||
| - **unload**: Unload a namespace from the current serving broker | ||
| - `namespace` (string, required): The namespace name (format: tenant/namespace) | ||
| - `bundle` (string, optional): Bundle name or range | ||
|
|
||
| - **split_bundle**: Split a namespace bundle | ||
| - `namespace` (string, required): The namespace name (format: tenant/namespace) | ||
| - `bundle` (string, required): Bundle name or range | ||
| - `unload` (string, optional): Unload newly split bundles (true/false) | ||
| - `unload` (string, optional): Unload newly split bundles (true/false) |
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.