You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add localization and test coverage for ToolPipe MCP integration
- Create package.nls.json with localized strings for extension UI
- Update package.json to use localization placeholders (%displayName%, %description%, etc.)
- Add comprehensive test suite for inline reference snippet rendering
- Tests cover: basic snippet rendering, backtick escaping, fence length calculation
- Tests verify: code blocks with language IDs, empty snippets, multiple backtick sequences
- All tests follow existing VS Code test patterns and conventions
"description": "Integrates ToolPipe MCP Server - 120+ developer utilities via Model Context Protocol",
4
+
"configuration.title": "ToolPipe MCP Server",
5
+
"configuration.enabled.description": "Enable ToolPipe MCP Server integration",
6
+
"configuration.mode.description": "ToolPipe connection mode: 'remote' for cloud-hosted server, 'local' for npm-based server",
7
+
"configuration.remoteUrl.description": "Remote URL for ToolPipe MCP Server (HTTPS endpoint). Provide your own server URL, for example: https://example.com/mcp",
8
+
"configuration.localCommand.description": "Command to run local ToolPipe server (e.g., 'npx' or full path)",
9
+
"configuration.localArgs.description": "Arguments for local ToolPipe server command",
0 commit comments