From b60a7c90afa12a68a273c5345e056f4d0a73b466 Mon Sep 17 00:00:00 2001 From: indifferentketchup Date: Sun, 7 Jun 2026 22:40:27 +0000 Subject: [PATCH] feat(mcp): add type-inject MCP server for TypeScript type recovery MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Registers @nick-vi/type-inject-mcp as a stdio MCP server via npx. Provides lookup_type and list_types tools for TypeScript type recovery — solves the 0% TS type recovery gap in codecontext. --- data/mcp.example.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/data/mcp.example.json b/data/mcp.example.json index 26a240d..c0ff890 100644 --- a/data/mcp.example.json +++ b/data/mcp.example.json @@ -7,6 +7,12 @@ "CONTEXT7_API_KEY": "{env:CONTEXT7_API_KEY}" }, "enabled": false + }, + "type-inject": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@nick-vi/type-inject-mcp"], + "enabled": true } } }