mirror of
https://github.com/run-llama/semtools.git
synced 2026-07-21 19:25:23 -04:00
MCP Server #5
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @botirk38 on GitHub (Sep 15, 2025).
Would we consider implementing a MCP over stdio transport for local use. My use case I want to use this with claude code!
@logan-markewich commented on GitHub (Sep 15, 2025):
@botirk38 there's an example in the repo actually
https://github.com/run-llama/semtools/blob/main/examples/use_with_mcp.md
This uses http, but could be switched to stdio easily. Libraries like fastmcp make this pretty trivial to implement 👍🏻
@logan-markewich commented on GitHub (Sep 15, 2025):
If you goal is claude code though, i would skip MCP entirely. its just CLI commands, so claude can execute bash with those commands already. You just have to tell claude that these commands exist
https://github.com/run-llama/semtools/blob/main/examples/use_with_coding_agents.md
@botirk38 commented on GitHub (Sep 24, 2025):
thanks logan, big help!