📦
Scribe
An MCP server - rule generator for Konveyor.io
0 installs
Trust: 34 — Low
Devtools
Ask AI about Scribe
Powered by Claude · Grounded in docs
I know everything about Scribe. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Scribe - An MCP Server for generating Konveyor rules and more.
A Model Context Protocol (MCP) server for generating rules for Konveyor.
Examples
Running the Server
Using Native Binary
./scribe-linux-x64.bin
# or on macOS
./scribe-macos-arm64.bin
Using Uber JAR
java -jar scribe.jar
Using Quarkus Dev Mode
mvn quarkus:dev
The server runs on http://localhost:8080 by default.
MCP Client Configuration
Cursor / VS Code
Add to your mcp.json:
{
"mcpServers": {
"scribe": {
"url": "http://localhost:8080/mcp/sse"
}
}
}
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"scribe": {
"url": "http://localhost:8080/mcp/sse"
}
}
}
Goose CLI
Add to your Goose config:
extensions:
scribe:
display_name: Scribe MCP
enabled: true
name: scribe
timeout: 300
type: sse
uri: "http://localhost:8080/mcp/sse"
