Skip to main content
Glama
404Simon

wikicfp-mcp

by 404Simon

WikiCFP MCP

面向WikiCFP的只读MCP服务器,WikiCFP是社区策展的学术会议数据库。它将会议搜索、完整类别浏览和征稿详情作为MCP工具暴露。

要求

  • Python 3.13+

  • uv

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中搜索与查询匹配的学术会议。

参数

类型

描述

query

string (必需)

搜索词(例如 "ai agent", "machine learning")

year

string (可选)

年份筛选:t(今年,默认),n(明年),a(全部)

limit

number (可选)

返回的最大会议数(默认: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&copyownerid=196290"
  }
]

conference_details

从会议的WikiCFP页面URL(search_conferences返回的url字段)获取完整的征稿详情。

参数

类型

描述

url

string (必需)

来自search_conferences的WikiCFP事件页面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限制的关键词搜索不同。

参数

类型

描述

category

string (必需)

list_categories返回的类别名称

page

number (可选)

要返回的页码,从1开始(默认:1)

返回页面元数据(total_pagestotal_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&copyownerid=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&copyownerid=83510"}]}

find_conferences

查找与任意给定关键词匹配的即将召开的会议。

参数

类型

描述

keywords

string[] (必需)

搜索词列表;会议匹配任意一个词即视为匹配

year

string (可选)

年份筛选:t(今年),n(明年),a(全部,默认)

min_deadline

string (可选)

仅保留提交截止日期在此日期或之后的会议(格式YYYY-MM-DDMon D, YYYY

limit

number (可选)

返回的最大会议数(默认:50)

对每个关键词搜索WikiCFP,合并并去重结果,仅保留尚未结束的会议。结果按提交截止日期排序(最早的在前)。日期或截止日期未知(N/ATBD)的会议始终保留。

[{"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&copyownerid=199571"}, ...]
Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    C
    maintenance
    SERP-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.
    2
    MIT

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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