get_comic_by_id
Retrieve detailed information about a specific Marvel comic using its unique ID through the Marvel MCP server.
Instructions
Fetch a single Marvel comic by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comicId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comicId": {
"type": "number"
}
},
"required": [
"comicId"
],
"type": "object"
}