from_mcp_config
Generate VS Code installation buttons and markdown badges by processing a raw MCP config object and server name, enabling quick setup and configuration for MCP servers.
Instructions
Generate install buttons from a raw MCP JSON-like config object and a server name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mcp | No | ||
name | Yes | Server display name. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"mcp": {},
"name": {
"description": "Server display name.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}