https://marketplace.visualstudio.com/items?itemName=plushveil.mcp-tools
.vscode/mcp.json
{
"servers": {
"tools": {
"type": "stdio",
"command": "npx",
"args": ["--yes", "@plushveil/mcp-tools"],
}
}
}
About
Provides all tools from the workspaces ./tools/<tool_name> folder in a model context.
Getting Started
A minimal tool consist of:
package.json with:
index.ts or similar as an entry point
- a default export of a function
- the first argument is an object following the input schema
- the second argument exposes some utilities like progress reporting and access to the model.
- returns a tool result.
- Optionally, a
getTextSuggestions function that provides text suggestions for ${input} placeholders in .prompt.md files.
- Optionally, a
[name].prompt.md that provides predefined prompts to the model.
| |