wikicfp-mcp
WikiCFP MCP
面向WikiCFP的只读MCP服务器,WikiCFP是社区策展的学术会议数据库。它将会议搜索、完整类别浏览和征稿详情作为MCP工具暴露。
要求
Python 3.13+
Related MCP server: confluence-http-api-mcp
设置
uv sync配置
这是一个MCP服务器。你将其注册到编码代理的MCP配置中,然后代理就可以使用其工具。
大多数代理接受相同的本地stdio配置。例如,在Opencode中,你将其添加到opencode.json:
{
"mcp": {
"wikicfp-mcp": {
"command": [
"/home/simon/dev/wikicfp-mcp/.venv/bin/python",
"/home/simon/dev/wikicfp-mcp/src/main.py"
],
"enabled": true,
"type": "local"
}
}
}完成此设置后,代理会自动发现工具,你可以直接询问类似以下内容:
"查找截止日期在9月之后的绿色AI相关即将召开的会议。"
工具
search_conferences
在WikiCFP中搜索与查询匹配的学术会议。
参数 | 类型 | 描述 |
|
| 搜索词(例如 "ai agent", "machine learning") |
|
| 年份筛选: |
|
| 返回的最大会议数(默认:10) |
返回一个会议列表,每个会议包含名称、描述、日期(when)、地点(where)、提交截止日期(deadline)以及WikiCFP的url:
[
{
"name": "Cyber-AI 2026",
"description": "The 2nd IEEE 2026 International Conference on Cybersecurity and AI-Based Systems (Scopus)",
"when": "Sep 22, 2026 - Sep 25, 2026",
"where": "Bucharest, Romania",
"deadline": "Jul 31, 2026",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=191252©ownerid=196290"
}
]conference_details
从会议的WikiCFP页面URL(search_conferences返回的url字段)获取完整的征稿详情。
参数 | 类型 | 描述 |
|
| 来自 |
返回名称、描述、日期、地点、官方网站、所有截止日期和类别:
{"name": "SMARTGREENS 2027",
"description": "SMARTGREENS 2027 : 16th International Conference on Smart Cities and Green ICT Systems",
"when": "Apr 16, 2027 - Apr 17, 2027", "where": "Rome, Italy",
"website": "https://smartgreens.scitevents.org/",
"submission_deadline": "Nov 17, 2026", "notification_due": "Jan 15, 2027", "final_version_due": "Jan 27, 2027",
"categories": ["services", "grid computing", "green computing", "smart grid"]}list_categories
列出WikiCFP跟踪的所有会议类别,按每个类别的征稿数量排序。
返回最多约300个类别,包含名称、浏览URL和征稿数量:
[{"name": "artificial intelligence", "url": "http://www.wikicfp.com/cfp/call?conference=artificial intelligence", "count": 10667},
{"name": "machine learning", "url": "http://www.wikicfp.com/cfp/call?conference=machine learning", "count": 6454},
{"name": "green computing", "url": "http://www.wikicfp.com/cfp/call?conference=green computing", "count": 149}, ...]conferences_by_category
列出WikiCFP类别中的会议,一次一页。这是类别的完整视图:通过从1到total_pages迭代page(每页约20个),可以访问其中的每个征稿,这与WikiCFP限制的关键词搜索不同。
参数 | 类型 | 描述 |
|
|
|
|
| 要返回的页码,从1开始(默认:1) |
返回页面元数据(total_pages、total_cfps)以及该页上的会议。注意,后面的页面包含已过期的征稿。
{"category": "green computing", "page": 1, "total_pages": 8, "total_cfps": 149,
"conferences": [
{"name": "SMARTGREENS 2027",
"description": "16th International Conference on Smart Cities and Green ICT Systems",
"when": "Apr 16, 2027 - Apr 17, 2027", "where": "Rome, Italy",
"deadline": "Nov 17, 2026",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=201733©ownerid=45217"},
{"name": "GREEN 2026",
"description": "The Eleventh International Conference on Green Communications, Computing and Technologies",
"when": "Oct 25, 2026 - Oct 29, 2026", "where": "Lisbon, Portugal",
"deadline": "Jul 6, 2026",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=199671©ownerid=83510"}]}find_conferences
查找与任意给定关键词匹配的即将召开的会议。
参数 | 类型 | 描述 |
|
| 搜索词列表;会议匹配任意一个词即视为匹配 |
|
| 年份筛选: |
|
| 仅保留提交截止日期在此日期或之后的会议(格式 |
|
| 返回的最大会议数(默认:50) |
对每个关键词搜索WikiCFP,合并并去重结果,仅保留尚未结束的会议。结果按提交截止日期排序(最早的在前)。日期或截止日期未知(N/A、TBD)的会议始终保留。
[{"name": "MIT AI Conference 2026",
"description": "MIT AI Conference 2026- AI: The Age of Agency",
"when": "Oct 17, 2026 - Oct 17, 2026", "where": "Computer History Museum Mountain View, C",
"deadline": "Oct 17, 2026",
"url": "http://www.wikicfp.com/cfp/servlet/event.showcfp?eventid=201388©ownerid=199571"}, ...]Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceMCP server for academic research using the OpenAlex API, enabling article search, details retrieval, and author profile lookup.
- AlicenseAqualityCmaintenanceRead-only MCP server for self-hosted Confluence that lets AI agents search pages, fetch content, and navigate page trees via the REST API.514MIT
- Alicense-qualityCmaintenanceSERP-free scholarly search MCP server that queries academic sources like arXiv, Semantic Scholar, and conference proceedings using official APIs and reverse-engineered endpoints, with no API keys required. It supports unified conference search and returns normalized paper metadata.2MIT
- Alicense-qualityAmaintenanceRead-only MCP server for accessing AtCoder problem statements and samples, enabling problem retrieval and search without contest interference.MIT
Related MCP Connectors
Read-only MCP server for searching Japan government procurement bid information from the KKJ portal.
Read-only MCP server for the WebAssembly spec: instructions, types, sections, search, proposals.
Academic research MCP server for paper search, citation checks, graphs, and deep research.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/404Simon/wikicfp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server