Msevent Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Msevent Mcp (Agent Skill) and scored it 45/100 (orange). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 1 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 1 flagged
A base64 string of 128+ characters appears in a documentation file. Encoded prompt injection hides the hostile instruction in base64 — invisible to keyword filters — and relies on the agent's ability to decode it at runtime. There is no normal authoring reason to embed a multi-hundred-byte base64 blob in skill docs.
*.sig, SIGNATURES) outside the documentation.Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP server that exposes the Microsoft Events API as tools for AI assistants. Search, filter, and analyze Microsoft events (conferences, workshops, webinars) directly from Claude, Cursor, or any MCP-compatible client.
[→ Landing Page](https://trsdn.github.io/msevent-mcp)
msevent-mcp demo
Animated chat demo — also available as [interactive SVG](https://trsdn.github.io/msevent-mcp)
de-de, en-us, and other Microsoft API locales| Tool | Description |
|---|---|
search_events | Search events with optional filters and free-text query |
get_event_details | Get full details for a specific event by ID |
list_filters | List all available filter categories with counts |
get_event_stats | Get aggregated statistics about events |
No cloning or pip needed — just add this to your Claude Desktop MCP config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"microsoft-events": {
"command": "uvx",
"args": ["msevent-mcp"]
}
}
}Or add it to Claude Code:
claude mcp add microsoft-events uvx msevent-mcpuvx is included with uv. It runs the server in an isolated environment and keeps it up to date automatically.
git clone https://github.com/trsdn/msevent-mcp.git
cd msevent-mcp
pip install -r requirements.txt
python mcp_server.pyFor source installs, use the full path in your MCP config:
{
"mcpServers": {
"microsoft-events": {
"command": "python3",
"args": ["/path/to/msevent-mcp/mcp_server.py"]
}
}
}search_events(filters="topic:ai,region:europe", locale="de-de")list_filters(locale="en-us")get_event_stats(filters="format:digital")Run the unit tests (no network required):
pip install pytest pytest-cov
python3 -m pytest test_mcp_server.py -v -m "not live"Run with coverage report:
python3 -m pytest test_mcp_server.py -m "not live" --cov=mcp_server --cov-report=term-missingRun live API tests (requires network):
python3 -m pytest test_mcp_server.py -v -m "live"Name Stmts Miss Cover
---------------------------------------------
mcp_server.py 95 1 99%mcp_server.py # MCP server with 4 tools
test_mcp_server.py # 50 unit tests + 4 live API tests
requirements.txt # Dependencies (fastmcp)
pyproject.toml # Package config (uvx-installable)
pytest.ini # Test configuration
docs/
index.html # GitHub Pages landing page
demo.svg # Animated SVG chat simulation
demo.gif # Animated GIF for README / social mediaThe server uses urllib.request for HTTP calls (no additional dependencies beyond FastMCP) and maintains an in-memory event cache for the lifetime of the process.
The server communicates with the Microsoft Events API via POST requests. No API key is required.
| Category | Example Values |
|---|---|
topic | ai, security, cloud, data |
product | azure, m365, dynamics |
region | europe, north-america, asia |
format | digital, in-person, hybrid |
audience | developer, it-pro, business |
Built with FastMCP and the Model Context Protocol.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.