get_character_by_id
Retrieve detailed Marvel character information using a unique character ID through the Marvel MCP server. Query specific characters for integration into applications or data analysis.
Instructions
Fetch a Marvel character by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
characterId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"characterId": {
"type": "number"
}
},
"required": [
"characterId"
],
"type": "object"
}