这是一个Smithery MCP,用于从WikiCFP搜索学术会议和活动。
ConferenceSearcher允许您根据关键词搜索即将举行的学术会议和活动。它从WikiCFP抓取会议信息,并返回每个匹配事件的详细信息,包括名称、描述、日期、地点和提交截止日期。
搜索与特定关键词相匹配的会议。
keywords(字符串,必需):用于搜索会议的关键词(例如,'ai agent','machine learning')limit(数字,可选):要返回的最大事件数量(默认值:10)一个具有以下属性的JSON对象:
status:操作状态(成功/错误)count:找到的事件数量events:会议事件数组,每个包含:
name:会议名称title:会议标题when:会议的时间和日期where:会议地点submission_deadline:提交截止日期notification_due:通知到期日(如果可用)wikicfp_link:指向WikiCFP上会议页面的链接description:会议的描述文本external_link:外部会议网站URL(如果可用)related_resources:相关会议/资源数组(如果可用),每个包含:
name:相关资源的名称title:相关资源的标题url:指向相关资源的WikiCFP URLpython3 app.py "ai agent" 3
{
"status": "success",
"count": 3,
"events": [
{
"id": "188218",
"name": "AIAS 2025",
"title": "加速科学2025人工智能研讨会",
"when": "2025年10月27日 - 2025年10月28日",
"where": "旧金山",
"submission_deadline": "2028年8月1日",
"notification_due": "2028年9月1日",
"wikicfp_link": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=188218©ownerid=193501",
"description": "我们邀请探索核心的人工智能进步如何加速科学进展的提交。此次呼吁关注能够使新的探究模式、假设生成和实验跨学科进行的变革性AI创新。我们特别欢迎在以下领域的工作:基础模型......",
"external_link": "https://aias2025.org/",
"related_resources": [
{
"name": "AIxDKE 2026",
"title": "国际人工智能x数据和知识工程会议",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=188224"
}
]
},
{
"id": "186126",
"name": "PRIMA 2025",
"title": "第26届多代理系统原理与实践国际会议",
"when": "2025年12月15日 - 2025年12月19日",
"where": "摩德纳",
"submission_deadline": "2025年7月22日(2025年7月15日)",
"notification_due": "2025年9月29日",
"wikicfp_link": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=186126©ownerid=186186",
"external_link": "https://conferences-website.github.io/prima2025/",
"related_resources": [
{
"name": "Ei/Scopus-CCNML 2025",
"title": "2025年第5届通信、网络和机器学习国际会议(CCNML 2025)",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=127474"
}
]
},
{
"id": "185890",
"name": "EUMAS 2025",
"title": "第22届欧洲多代理系统会议",
"when": "2025年9月3日 - 2025年9月5日",
"where": "罗马尼亚布加勒斯特",
"submission_deadline": "2025年5月16日",
"notification_due": "2025年6月30日",
"wikicfp_link": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=185890©ownerid=191777",
"external_link": "https://euramas.github.io/eumas2025/",
"related_resources": [
{
"name": "Ei/Scopus-CCNML 2025",
"title": "2025年第5届通信、网络和机器学习国际会议(CCNML 2025)",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=127474"
},
{
"name": "PRIMA 2025",
"title": "第26届多代理系统原理与实践国际会议",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=186126"
}
]
}
]
}
本项目采用GNU通用公共许可证v3版 - 详情见LICENSE文件。