MCPEvent
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., "@MCPEventrun the fast regression tests"
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.
EventHub — MCP Event Server
Generic self-hosted MCP event server foundation (python -m app.server).
Layout
app/ application composition: Starlette+Uvicorn host, entrypoint,
lifespan presentation helpers, canonical config + paths
core/ generic services: events, alerts, runtime/background tasks,
SSE broker, persistence (core/persistence/store.py + modules/)
mcp_server/ MCP surface: contract identifiers, tools/, resources,
services bundle, metrics (named mcp_server so it can never
shadow the installed `mcp` SDK distribution)
sources/ external source subsystem (registry, HTTP poller, test source)
test/ feature-focused regression suite (see below)Related MCP server: MCP Server & Client Test Environment
Layout
test/
run_all.py # regression driver: isolated subprocess per file, hard 300s/file timeout
helpers/ # lifecycle, mcp, wait, mock_http, runner — shared test support
mcp_result.py # SDK result normalization + safe teardown
test_*.py # one feature per file (the units of the suite)
config.json # base server config (overwritten per-test, restored after)
TEST_RUNTIME_MAP.md # per-file server usage, harness behavior, run guidanceProduction source under test/ is frozen — do not edit server.py, events.py,
store.py, runtime.py, errors.py, client.py, config.json, requirements.txt,
or sources/* as part of test work.
Run
# Focused (preferred while debugging one feature):
python test/test_acknowledgement.py
python test/run_all.py --group fast
# Full regression (CI / release only — slow path):
python test/run_all.py
python test/run_all.py --timeout 300See TEST_RUNTIME_MAP.md for the server-usage matrix, the bounded-wait strategy, and
why you should run focused, not full, during development.
Principles
No server unless the test needs the MCP/HTTP boundary. Application logic (store, events, routing, checkpoint/ack, background tasks, source lifecycle, dedup) is tested directly against the real objects with an in-memory stub bus.
One server per D-level file (exceptions: restart tests in
test_errors.py/test_reconnect.py, andtest_subscriptions.pywhose tests need different source configs).Bounded waits, no long fixed sleeps. Readiness/counts are polled with timeouts.
Hard timeout (300 s/file) + parent-owned cleanup — the runner terminates the child's process group, so a hung file fails fast (reported as TIMEOUT) and any
server.pyit spawned is killed with it. No reliance on the child'satexit(which can't run after a hard kill).
Deleted (do not recreate)
test/test_phase8.py, test/integrate_test.py — replaced by the per-feature files above.
This server cannot be installed
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 Connectors
MEOK MCP Test MCP — golden-file + schema-drift + tool-failure tests for any MCP server. Drop-in
MCP server for building and testing AI agents with multi-model experimentation and insights.
An MCP server that provides access to Testiny projects, test cases and test runs
An MCP server that provides Javelin Standalone Guardrails
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA test server implementing all features of the MCP protocol, including prompts, tools, resources, and sampling, designed for testing MCP clients rather than practical applications.MIT
- FlicenseNot gradedqualityDmaintenanceA testing environment for MCP server setup and client-server interactions, allowing users to verify basic MCP server functionality and test client-server communications including shell command execution.-
- AlicenseNot gradedqualityBmaintenanceA Python MCP server with 65 deterministic tools across 8 groups, supporting stdio, HTTP, and REST API transports for consistent MCP protocol testing.1MIT
- AlicenseAqualityCmaintenanceAn MCP server that reads test reports and provides regression analysis tools for comparing runs, identifying regressions, fixes, and persistent failures.3MIT