0.0.7npm · github-mcp · current release
Observed 2026-08-21T17:16:14.284Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
addAdd two numbersInput schema{
"type": "object",
"properties": {
"a": {
"type": "number"
},
"b": {
"type": "number"
}
},
"required": [
"a",
"b"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"result": {
"type": "number"
}
},
"required": [
"result"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
list_issuesList issues in a GitHub repositoryInput schema{
"type": "object",
"properties": {
"owner": {
"type": "string"
},
"repo": {
"type": "string"
},
"state": {
"type": "string",
"enum": [
"open",
"closed"
],
"default": "open"
}
},
"required": [
"owner",
"repo"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"issues": {
"type": "array",
"items": {
"type": "object",
"properties": {
"number": {
"type": "number"
},
"title": {
"type": "string"
},
"body": {
"type": [
"string",
"null"
]
},
"state": {
"type": "string",
"enum": [
"open",
"closed"
],
"default": "open"
},
"user": {
"type": "string"
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
},
"html_url": {
"type": "string"
}
},
"required": [
"number",
"title",
"body",
"user",
"created_at",
"updated_at",
"html_url"
],
"additionalProperties": false
}
}
},
"required": [
"issues"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |