agntcon-2026
Click on "Deploy 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., "@agntcon-2026search for talks about multi-agent orchestration"
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.
AGNTCon + MCPCon Europe 2026 โ Intelligence Hub & Native MCP Server
An independent, fair-use research wiki, interactive AI assistant, and Model Context Protocol (MCP) server for AGNTCon + MCPCon Europe 2026 (17โ18 September 2026, RAI Amsterdam).
Academic & Community Fair-Use Notice:
This is an unofficial, independent open-source research and intelligence project. Original conference presentations, schedules, and materials are copyright ยฉ The Linux Foundation / Agentic AI Foundation and their respective speakers. This repository contains original analytical syntheses, verified open-source tool repositories, and outbound links to official Sched presentation pages. No speaker slides are reproduced or hosted.
๐๏ธ System Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ HARVESTER & EXTRACTION PIPELINE โ
โ [Sched Web Scraper] โโ> [PDF Magic-Byte Validator] โโ> [Karpathy Synthesizer]
โ โ
โ [GroundingCritic Gate]
โ โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ HIGH-PERFORMANCE DATA & INDEX LAYER โ
โ wiki/index.json โ agntcon2026.sqlite (FTS5 BM25 + BGE Embeddings) โ
โ wiki/sources/*.md โ wiki/concepts/*.md โ crm.sqlite (Inquiries) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ UNIFIED GATEWAY & MCP SERVER (serve.py) โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Active Concurrency Queue โ โ 8 Native MCP Tools โ โ
โ โ (asyncio.Semaphore(2)) โ โ search_talks โ get_page โ โ
โ โ 45s lease timeout โ โ answer_conf โ get_talk โ โ
โ โ Telemetry /api/queue-status โ โ list_talks โ list_concepts โ โ
โ โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโ โ get_conf_prof โ get_queue_stat โ โ
โ โ โโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโ
โผ โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ WEB CLIENT (app.js) โ โ AGENT / IDE CLIENTS โ
โ โข #chat-queue-indicator live UX โ โ โข Cursor (.cursor/mcp.json) โ
โ โข Obsidian 2nd-Brain JSZip โ โ โข Claude Desktop (mcp.json) โ
โ โข Client-Side BYOM (Ollama/LM) โ โ โข OpenClaw Gateway Agent โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโRelated MCP server: indico-mcp
๐ Quick Start (Local Setup in 30 Seconds)
Option A: Using uv (Recommended)
git clone https://github.com/asoshnin/AGNT_MCP_con_2026.git
cd AGNT_MCP_con_2026
uv venv
uv pip install -r requirements.txt
uv run python serve.pyOption B: Using standard Python venv
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python serve.py --port 8080Open http://localhost:8080 in your browser.
๐ค Model Context Protocol (MCP) Server Setup
This repository provides a standard JSON-RPC 2.0 stdio MCP server exposing 8 deterministic tools for agentic systems:
Tool | Parameters | Description |
|
| Hybrid lexical BM25 + dense vector search over all 113 conference sessions. |
|
| Retrieves full Karpathy source essence markdown or architectural concept synthesis. |
|
| Two-Tier Adaptive RAG grounded strictly in conference sessions with canonical citations. |
|
| Structured talk metadata: speakers, official Sched URL, tags, and summary. |
|
| Paginated catalog enumeration with slide availability filter. |
| (none) | Lists all 10 cross-cutting architectural concept documents. |
| (none) | High-level conference tracks, themes, attendee distribution, and branding tokens. |
| (none) | Live server inference concurrency telemetry and active queue depth. |
1. Claude Desktop Setup
Add the following snippet to your claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"agntcon-2026": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/02_public_hub/mcp_server.py"]
}
}
}2. Cursor IDE Setup
Add to .cursor/mcp.json in your workspace root:
{
"mcpServers": {
"agntcon-2026": {
"command": "python",
"args": ["mcp_server.py"]
}
}
}3. OpenClaw Setup
Add to your openclaw.json under plugins.mcp.servers:
{
"agntcon": {
"command": "python",
"args": ["/absolute/path/to/02_public_hub/mcp_server.py"]
}
}๐ก๏ธ Active Concurrency Queue & Zero-Cost Failover (Sprint P-04e)
The cloud gateway shields upstream community inference endpoints through an active FIFO queue:
Bounded Concurrency:
MAX_CONCURRENT_CHATS = 2simultaneous tasks withasyncio.Semaphore(2).45-Second Lease Timeout: Requests exceeding 45 seconds return
HTTP 504 Gateway Timeout.Capacity Gate: If waiting queue exceeds 10 requests, immediate
HTTP 429withRetry-After: 15.Live UI Telemetry: Client polls
/api/queue-statusevery 2s, rendering live queue positioning (Position in queue: #1 (estimated wait: ~3s)...).Free Gateway Cascade: Primary
openrouter/freeโ Secondary Kilocode / NVIDIA NIM free tiers โ HonestHTTP 503capacity notice if all are saturated.Strict Zero Financial Harm: Never falls back to billable personal API keys.
๐ ๏ธ Bring Your Own Model (BYOM) / Local Offline Setup
Visitors who prefer 100% offline, zero-telemetry local inference can configure local models directly in the web UI Settings drawer:
Local LM Studio
Launch LM Studio and load any instruction-tuned model.
Start the Local Inference Server on port
1234with CORS enabled.In Hub Settings, select Local Ollama / LM Studio (
http://127.0.0.1:1234/v1).
Local Ollama
Start Ollama with browser origin access:
OLLAMA_ORIGINS="*" ollama servePull a recommended model:
Standard Laptop (8โ16 GB RAM):
ollama pull qwen2.5:7b-instructorollama pull llama3.1:8bLightweight (4โ8 GB RAM):
ollama pull llama3.2:3b-instructHigh-End / GPU (16+ GB VRAM):
ollama pull qwen2.5:14b-instructorollama pull deepseek-r1:14b
In Hub Settings, set Base URL to
http://127.0.0.1:11434/v1.
Note: All BYOM queries run strictly browser-to-model via window.fetch(). Custom keys and prompts are never sent to or logged by the server.
๐ง Obsidian Second-Brain Export
Download pre-formatted markdown notes tailored for Obsidian:
Click ๐ฆ My Track in the header.
Select desired talks or click Select All (113 Talks).
Click Download Obsidian Vault (.zip).
Client-side
JSZippackages the notes with complete YAML frontmatter, tags, and bi-directional[[wikilinks]]with zero server computation.
๐งช Testing & Quality Gates
Run the automated test suite and linter:
# Run 21 deterministic unit & integration tests
pytest tests/ -v
# Run Ruff linter
ruff check .
# Run AST secrets & credential leak audit
python ../scripts/audit_secrets.py
# Run Concurrency burst harness (4 concurrent requests)
python ../scripts/test_queue_concurrency.pyโ๏ธ Open-Source Governance & License
Source Code: Released under the permissive MIT License.
Contributing: Please review CONTRIBUTING.md before submitting pull requests.
Security & Responsible Disclosure: See SECURITY.md.
Conference Attribution: Organized by The Linux Foundation and the Agentic AI Foundation.
Engineered by: vwoosh.com.
This server cannot be deployed
Maintenance
Related MCP Connectors
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
- WauldoOAuthcom.wauldo
Stateless agentic tools over MCP: concept extraction, long-context, knowledge graph, planning.
Nifty's MCP server โ exposes tasks, projects, messages, and files as tools for AI agents.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for accessing Sessionize event data. Query speakers, sessions, and schedules from any Sessionize-powered conference using natural language.64Apache 2.0
- AlicenseAqualityDmaintenanceMCP server for the Indico meeting agenda system, enabling AI agents to search event categories, browse agendas, and extract contribution and session details. Works with multiple Indico instances simultaneously.193MIT
- FlicenseNot gradedqualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.1-
- FlicenseNot gradedqualityCmaintenanceExposes task management (add, list, complete tasks) and document search (RAG) as MCP tools for AI agents.-