@better-agents/morphllm-ro
v0.2.0
Published
Read-only MCP proxy for @morphllm/morphmcp — blocks edit_file and marks all tools as read-only
Maintainers
Readme
morphllm-ro
A read-only MCP proxy for @morphllm/morphmcp. It forwards all tools from the upstream MCP server but blocks edit_file and marks every exposed tool as read-only.
Prerequisites
- Bun v1.3.10 or later
- Node.js v18+ (required by
@modelcontextprotocol/sdk) - A valid MorphLLM API key (set via
MORPH_API_KEYenvironment variable)
Installation
No local clone needed. Run directly via bunx:
bunx @better-agents/morphllm-roUsage
The server communicates over stdio, so it is meant to be launched by an MCP host (e.g. Claude Code). Add it to your MCP config:
{
"mcpServers": {
"morphllm-ro": {
"command": "bunx",
"args": ["@better-agents/morphllm-ro"],
"env": {
"MORPH_API_KEY": "your-api-key"
}
}
}
}