wcc_mcp_server
Exposes the WCC event, mentorship, and analytics pipeline tools as MCP endpoints with per-group authentication and dry-run support, enabling agents to manage events, mentors, and analytics.
README
WCC Pipeline MCP Server
Exposes the WCC event/mentorship/analytics pipeline as MCP tools over streamable HTTP (or stdio for local testing). Built for SecondBrain's agent-api MCP client, but any MCP client can connect.
One process serves three tool groups, each with its own endpoint, bearer token, and lock — a token can only ever list/call its own group's tools:
| group | endpoint | tools | maps to skills |
|---|---|---|---|
| events | /mcp/events |
10 | everything except wcc-mentorship / wcc-analytic |
| mentorship | /mcp/mentorship |
8 | skills/wcc-mentorship/ |
| analytic | /mcp/analytic |
2 | skills/wcc-analytic/ |
Layout
wcc_mcp/ MCP server package (tool table, runner, HTTP app)
tests/ pytest suite (also validates the vendored script closure)
skills/ vendored pipeline scripts, one folder per skill
skills/.env API secrets (NOT committed — copy skills/.env.example)
.env server config: group tokens, DRY_RUN (NOT committed)
skills/ is a vendored snapshot of the WCC workspace skills (2026-07-22),
trimmed to the scripts the 20 tools actually execute (plus their transitive
helper scripts). The skills/<skill>/scripts/ layout is preserved because the
scripts locate each other and skills/.env via relative paths. Vendored
changes vs. the workspace originals:
wcc-mentorship/scripts/publish_next_mentor.sh: queue path is overridable viaWCC_MENTOR_QUEUEso the mutable queue can live on a Docker volume.
Browser automation (Meetup UI, HTML→PNG posters) is not part of this server;
publish_event.sh skips the Meetup step and tolerates missing posters.
Local setup
cp .env.example .env # set WCC_MCP_TOKEN_* (openssl rand -hex 32)
cp skills/.env.example skills/.env # fill in API secrets
./run.sh # creates .venv, installs, serves http://127.0.0.1:8765/mcp/<group>
Host requirements: python3.10+, bash, jq, node (mentorship tools),
ffmpeg (process_recording only). Analytic tools additionally need
pip install -r requirements-analytic.txt (or set WCC_ANALYTIC_PYTHON
to a venv python that has pandas/seaborn).
Modes
- HTTP (default):
./run.sh— serves every group whose token is set; clients sendAuthorization: Bearer <group token>to/mcp/<group>./healthis open and reports per-group tool counts. - stdio:
./run.sh --stdio [--group events|mentorship|analytic]— unauthenticated, one group at a time, for MCP Inspector or Claude Desktop:npx @modelcontextprotocol/inspector ./run.sh --stdio --group analytic
Dry runs
DRY_RUN=true ./run.sh passes DRY_RUN=true to every script — they log
instead of hitting Google/Luma/LinkedIn APIs. Always dry-run publish_event
after changing anything.
Docker
docker build -t wcc-mcp .
docker run --rm --env-file .env \
-v "$PWD/skills/.env:/app/skills/.env:ro" \
-p 8765:8765 wcc-mcp
curl http://127.0.0.1:8765/health
The image bundles python + node deps and all vendored scripts. Mutable state
lives under /data (volume): analytics output (WCC_ANALYTICS_DATA) and the
mentor post queue (WCC_MENTOR_QUEUE). Draft-event state in /tmp is
ephemeral and lost on restart — same behavior as running on a host.
Deployment (VM alongside agent-api)
The container is not published on any host port. It joins a shared Docker
network; agent-api on the same VM reaches it at http://wcc-mcp:8765/mcp/<group>.
One-time server bootstrap:
sudo mkdir -p /opt/wcc-mcp && cd /opt/wcc-mcp
# place docker-compose.yml (from this repo)
# place .env (from .env.example — real tokens; chmod 600)
# place skills.env (from skills/.env.example — real API secrets; chmod 600)
docker network create agent-net # agent-api compose must join it too
docker login ghcr.io # read-only PAT (private image)
docker compose up -d
# seed the mentor queue onto the volume:
docker compose cp wcc-mcp:/app/skills/wcc-mentorship/mentor_post_queue.txt.example /tmp/q.txt
docker compose exec wcc-mcp sh -c 'cat > /data/mentor_post_queue.txt' < /tmp/q.txt
In agent-api's data/tenants.json, point each tenant's MCP server at
http://wcc-mcp:8765/mcp/<group> with the matching bearer token
(allow_private: true). Alternatively, add the wcc-mcp service directly to
the agent-api compose stack instead of using the external network.
Secrets model
- Inbound auth: per-group bearer tokens in
/opt/wcc-mcp/.env; the only client is agent-api on the internal Docker network — no TLS/reverse proxy needed, nothing listens on a host interface. - Outbound auth: API secrets in
/opt/wcc-mcp/skills.env, mounted read-only at/app/skills/.env. Never in the image, never in git, never in GitHub Actions. Rotate by editing the file anddocker compose up -d. - CI only holds SSH deploy credentials (see below).
CI/CD
.github/workflows/ci-deploy.yml: on push to main — pytest → build →
push ghcr.io/<repo>:latest + :sha-… → SSH to the VM →
docker compose pull && up -d.
Required GitHub repo secrets:
| secret | value |
|---|---|
SSH_HOST |
VM hostname/IP |
SSH_USER |
deploy user (in the docker group) |
SSH_KEY |
private key of a dedicated deploy keypair |
SSH_PORT |
optional, defaults to 22 |
Pipeline rules (enforced via tool descriptions)
- STOP on calendar conflicts —
quick_conflict_checkbefore drafting. - All event times are Europe/London.
- Never
publish_eventbeforeset_registration_linksucceeded. - One event in flight at a time (
/tmp/draft_event.json); exclusive tools are serialized by a lock and fail fast if another step is running.
Tests
pip install -e '.[dev]'
pytest
test_every_script_exists_on_disk guards the vendored closure — it fails if
a tool references a script that wasn't vendored.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。