compare_plays
Analyze and compare two dramatic plays by metrics and structural elements using the DraCor MCP Server. Identify differences in texts, character networks, and play information for research or study.
Instructions
Compare two plays in terms of metrics and structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
corpus_name1 | Yes | ||
corpus_name2 | Yes | ||
play_name1 | Yes | ||
play_name2 | Yes |
Input Schema (JSON Schema)
{
"properties": {
"corpus_name1": {
"title": "Corpus Name1",
"type": "string"
},
"corpus_name2": {
"title": "Corpus Name2",
"type": "string"
},
"play_name1": {
"title": "Play Name1",
"type": "string"
},
"play_name2": {
"title": "Play Name2",
"type": "string"
}
},
"required": [
"corpus_name1",
"play_name1",
"corpus_name2",
"play_name2"
],
"title": "compare_playsArguments",
"type": "object"
}