Tool tree
Discover verified academic conferences, symposiums, and calls for papers worldwide. CallForPaper.org connects researchers, organizers, and universities in one verified ecosystem.
search_cfpsAnswer
Search active academic calls for papers and research events on CallForPaper.org. Use this when the user wants to find conferences, workshops, CFPs, submission opportunities, deadlines, or academic events. Supports filtering by research subject, deadline, location, event type, and participation mode.
View tool JSON
{
"name": "search_cfps",
"kind": "answer",
"impl": "imperative",
"description": "Search active academic calls for papers and research events on CallForPaper.org. Use this when the user wants to find conferences, workshops, CFPs, submission opportunities, deadlines, or academic events. Supports filtering by research subject, deadline, location, event type, and participation mode.",
"inputSchema": {
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "The search query or keyword (e.g., \"Artificial Intelligence\", \"Sustainability\")."
}
},
"required": [
"q"
]
},
"page": "/"
}analyze_abstractAction
Analyze a research abstract against an academic call for papers. Identify topical relevance, likely fit, mismatches, and areas that could be strengthened. Use when the user provides an abstract and asks whether it fits a CFP or conference..
View tool JSON
{
"name": "analyze_abstract",
"kind": "act",
"impl": "imperative",
"description": "Analyze a research abstract against an academic call for papers. Identify topical relevance, likely fit, mismatches, and areas that could be strengthened. Use when the user provides an abstract and asks whether it fits a CFP or conference..",
"inputSchema": {
"type": "object",
"properties": {
"abstract": {
"type": "string",
"description": "The full text of the academic abstract to analyze."
}
},
"required": [
"abstract"
]
},
"page": "/"
}generate_conference_namesAction
Generate creative, professional conference names based on a topic and target audience.
View tool JSON
{
"name": "generate_conference_names",
"kind": "act",
"impl": "imperative",
"description": "Generate creative, professional conference names based on a topic and target audience.",
"inputSchema": {
"type": "object",
"properties": {
"topic": {
"type": "string",
"description": "The main topic of the conference."
},
"subject_area": {
"type": "string",
"description": "Broad research area."
},
"tone": {
"type": "string",
"enum": [
"formal",
"innovative",
"community"
],
"default": "formal"
},
"count": {
"type": "number",
"description": "Number of suggestions (max 10).",
"default": 5
}
},
"required": [
"topic"
]
},
"page": "/"
}