view
Pack: mitre-cwe · Endpoint: https://gateway.pipeworx.io/mitre-cwe/mcp
“Top 25 most dangerous software weaknesses” / “OWASP Top 10 CWE mapping” / “CWE view [N]” — fetch a curated CWE view (a published, opinionated selection of weaknesses). View 1003 = simplified mapping (NVD uses this), view 1387 = Top 25, view 1344 = OWASP Top 10. Returns the view’s metadata plus the included CWE IDs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "1003"
}
curl
curl -X POST https://gateway.pipeworx.io/mitre-cwe/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"view","arguments":{"id":"1003"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('view', {
"id": "1003"
});
Response shape
| Field | Type | Description |
|---|---|---|
cwe_id | string | View identifier |
name | string | View name |
description | string | View description |
status | string | Status of the view |
Full JSON Schema
{
"type": "object",
"description": "CWE view record from MITRE CWE API",
"properties": {
"cwe_id": {
"type": "string",
"description": "View identifier"
},
"name": {
"type": "string",
"description": "View name"
},
"description": {
"type": "string",
"description": "View description"
},
"status": {
"type": "string",
"description": "Status of the view"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mitre-cwe": {
"url": "https://gateway.pipeworx.io/mitre-cwe/mcp"
}
}
}
See Getting Started for client-specific install steps.