What is the Mitre Cwe MCP server?
MITRE Common Weakness Enumeration (CWE) API
How to install Mitre Cwe
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mitre-cwe": {
"url": "https://gateway.pipeworx.io/mitre-cwe/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mitre-cwe": {
"serverUrl": "https://gateway.pipeworx.io/mitre-cwe/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mitre-cwe": {
"type": "http",
"url": "https://gateway.pipeworx.io/mitre-cwe/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"mitre-cwe": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/mitre-cwe/mcp"
]
}
}
}Claude Code
claude mcp add --transport http mitre-cwe https://gateway.pipeworx.io/mitre-cwe/mcp