https://github.com/search?q=path%3A.vscode%2Fmcp.json&type=code
As of April 13, 2025
there are 147 files.
- MCP uses a PAT token which may be considered insecure.
- There are some scanners for MCP, however some may send back information and telemetry to source.
https://github.com/DMontgomery40/mcp-security-scanner
https://github.com/DMontgomery40
https://github.blog/changelog/2025-04-04-github-mcp-server-public-preview/
- Based on Anthropic's reference server
- Rewritten in Go.
https://www.anthropic.com/news/model-context-protocol
https://github.com/dotnet/maui/tree/main
{
"inputs": [
{
"type": "promptString",
"id": "github-key",
"password": true, // Encrypted at-rest
"description": "GitHub PAT"
}
],
"servers": {
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github-key}"
}
}
}
}
https://github.com/DMontgomery40/mcp-3D-printer-server
# Required for authentication with your printer management system
API_KEY=your_api_key_here
# Default printer connection settings
PRINTER_HOST=localhost
PRINTER_PORT=80
PRINTER_TYPE=octoprint # Options: octoprint, klipper, duet, repetier, bambu
# Optional: Directory for temporary files
TEMP_DIR=/path/to/temp/dir
# Bambu Labs specific configuration
BAMBU_SERIAL=your_printer_serial
BAMBU_TOKEN=your_access_token
# Slicer configuration
SLICER_TYPE=prusaslicer # Options: prusaslicer, cura, slic3r
SLICER_PATH=/path/to/slicer/executable
SLICER_PROFILE=/path/to/slicer/profile
{ "mcpServers": { "3dprint": { "command": "mcp-3d-printer-server", "env": { "API_KEY": "your_api_key_here", "PRINTER_HOST": "your_printer_ip", "PRINTER_TYPE": "octoprint" } } } }