From b8634331f9e8391f96f801ba021c91b200c072d9 Mon Sep 17 00:00:00 2001 From: zewelor Date: Sat, 21 Mar 2026 11:29:11 +0000 Subject: [PATCH] Add wtp-mcp tool and opencode config - Add `github:bnomei/wtp-mcp` to `mise.toml` to declare the WTP MCP tool - Add `opencode.json` to configure MCP to run the local `wtp-mcp-rs` command - Enable local WTP/MCP integration for development and CI workflows --- mise.toml | 1 + opencode.json | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 opencode.json diff --git a/mise.toml b/mise.toml index 8404fe57..9262e2a5 100644 --- a/mise.toml +++ b/mise.toml @@ -1,5 +1,6 @@ [tools] "gem:ruby-lsp" = "latest" +"github:bnomei/wtp-mcp" = "latest" ruby = "4.0.2" [env] diff --git a/opencode.json b/opencode.json new file mode 100644 index 00000000..fa2961ee --- /dev/null +++ b/opencode.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://opencode.ai/config.json", + "mcp": { + "wtp": { + "type": "local", + "command": [ + "wtp-mcp-rs" + ] + } + } +}