get_characters_for_comic
Retrieve Marvel characters associated with a specific comic by providing the comic ID. Ideal for developers and fans exploring character details in the Marvel MCP server.
Instructions
Fetch Marvel characters for a given comic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comicId | Yes | ||
events | No | ||
limit | No | ||
modifiedSince | No | ||
name | No | ||
nameStartsWith | No | ||
offset | No | ||
orderBy | No | ||
series | No | ||
stories | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comicId": {
"type": "number"
},
"events": {
"type": "string"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"modifiedSince": {
"type": "string"
},
"name": {
"type": "string"
},
"nameStartsWith": {
"type": "string"
},
"offset": {
"type": "number"
},
"orderBy": {
"type": "string"
},
"series": {
"type": "string"
},
"stories": {
"type": "string"
}
},
"required": [
"comicId"
],
"type": "object"
}