Mcp Server Poc — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Poc (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
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.
A proof-of-concept implementation of a Model Context Protocol (MCP) server for AI assistant note-taking, featuring custom tools and resources for managing notes.
This project demonstrates how to create and use a Model Context Protocol (MCP) server that provides note-taking capabilities to AI assistants (such as Claude, Cursor, and others supporting MCP). The server includes:
All notes are stored in a local notes.txt file in the project directory.
git clone https://github.com/yourusername/mcp-server-poc.git
cd mcp-server-poc# Init uv package manager
uv init
# Create a Python 3.11 virtual environment
uv venv
# Activate on Windows
.venv\Scripts\activate
# Activate on macOS/Linux
source venv/bin/activateuv pip install -r requirements.txtuv add "mcp[cli]"To run the MCP server:
uv run mcpThe server will start and wait for connections using the stdio transport method.
To use this MCP server with Cursor IDE:
~/.cursor/mcp.json (on Windows: C:\Users\<username>\.cursor\mcp.json) with the following content:{
"mcpServers": {
"mcp-server": {
"command": "python",
"args": [
"ABSOLUTE/PATH/TO/main.py"
]
}
}
}main.py file.C:\\Users\\username\\path\\to\\main.py/Users/username/path/to/main.pynotes.txt file and returns a confirmation message.notes.txt file, or a message if there are no notes yet.notes.txt.notes.txt in the project root. This file is created automatically if it does not exist.mcp[cli] dependency.If you use stdio transport on Windows, you may need to set binary mode for stdin/stdout. See the MCP documentation for details.
pip list to check)~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.