make_install_buttons
Generate VS Code Stable and Insiders MCP install button markdown for NPX-based servers, providing configurable inputs and commands for streamlined setup.
Instructions
Generate VS Code Stable and Insiders MCP install button markdown for an NPX-based server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | No | ||
inputs | No | ||
name | Yes | Server display name (e.g., 'supabase'). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"config": {
"additionalProperties": false,
"default": {
"args": [],
"command": "npx"
},
"properties": {
"args": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"default": "npx",
"type": "string"
},
"env": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"type": "object"
},
"inputs": {
"default": [],
"items": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"password": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"id"
],
"type": "object"
},
"type": "array"
},
"name": {
"description": "Server display name (e.g., 'supabase').",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}