rustypaste mcp for VS Code
io.github.rukh-debug/rustypaste-mcp
An MCP server that wraps the rustypaste API
client:VS Code
transport:stdio
runtime:npm
Install rustypaste mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rustypaste-url",
"description": "RUSTYPASTE_URL",
"password": true
},
{
"type": "promptString",
"id": "rustypaste-auth-token",
"description": "RUSTYPASTE_AUTH_TOKEN",
"password": true
}
],
"servers": {
"rustypaste-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@rukh-pub/rustypaste-mcp"
],
"env": {
"RUSTYPASTE_URL": "${input:rustypaste-url}",
"RUSTYPASTE_AUTH_TOKEN": "${input:rustypaste-auth-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs