wikicfp-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wikicfp-mcpSearch for conferences on machine learning"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
WikiCFP MCP
Read-only MCP server for WikiCFP, the community-curated academic conference database. Exposes conference search, full category browsing, and call-for-papers details as MCP tools.
Requirements
Python 3.13+
Related MCP server: confluence-http-api-mcp
Setup
uv syncConfiguration
This is an MCP server. You register it in your coding agent's MCP configuration, then the agent can use its tools.
Most agents accept the same local stdio configuration. For example, in Opencode you add it to the 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"
}
}
}After this setup, the agent discovers the tools automatically and you can simply ask it things like:
"Find upcoming conferences on Green AI with deadlines after September."
Tools
search_conferences
Search WikiCFP for academic conferences matching a query.
Argument | Type | Description |
|
| Search terms (e.g. "ai agent", "machine learning") |
|
| Year filter: |
|
| Maximum number of conferences to return (default: 10) |
Returns a list of conferences, each with name, description, dates (when), location (where), submission deadline, and the 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
Fetch full call-for-papers details for a conference from its WikiCFP page URL (the url field returned by search_conferences).
Argument | Type | Description |
|
| WikiCFP event page URL from |
Returns name, description, dates, location, official website, all deadlines, and categories:
{"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
List all conference categories tracked by WikiCFP, ordered by the number of CFPs each.
Returns up to ~300 categories with name, browse URL, and CFP count:
[{"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
List conferences in a WikiCFP category, one page at a time. This is the complete view of a category: every CFP in it is reachable by iterating page from 1 to total_pages (~20 per page), unlike keyword search which WikiCFP caps.
Argument | Type | Description |
|
| Category name as returned by |
|
| Page number to return, 1-based (default: 1) |
Returns page metadata (total_pages, total_cfps) plus the conferences on that page. Note that later pages include expired 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
Find upcoming conferences matching any of the given keywords.
Argument | Type | Description |
|
| List of search terms; a conference matches if any term matches |
|
| Year filter: |
|
| Only keep conferences whose submission deadline is on or after this date ( |
|
| Maximum number of conferences to return (default: 50) |
Searches WikiCFP for each keyword, merges and deduplicates the results, and keeps only conferences that have not ended yet. Results are sorted by submission deadline (soonest first). Conferences whose dates or deadlines are unknown (N/A, TBD) are always kept.
[{"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