@plushveil/mcp-tools
v1.0.23
Published
https://marketplace.visualstudio.com/items?itemName=plushveil.mcp-tools
Readme
@plushveil/mcp-tools
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.jsonwith:mainentry pointinputSchemafollowing the MCP Tool Input Schema
index.tsor 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
getTextSuggestionsfunction that provides text suggestions for${input}placeholders in .prompt.md files.
- a default export of a function
- Optionally, a
[name].prompt.mdthat provides predefined prompts to the model.
