Mcp V — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp V (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 basic MCP (Model Context Protocol) server that responds with 'viincci_rag' to any prompt.
git clone <your-repo-url>
cd viincci-rag-mcppip install -r requirements.txtRun the server with:
python server.pyThe server will start on http://localhost:8000 and the MCP endpoint will be available at http://localhost:8000/mcp.
You can also use the FastMCP CLI:
fastmcp run server.pyOr with HTTP transport:
fastmcp run server.py --transport httpgit init
git add .
git commit -m "Initial commit: viincci_rag MCP server"
git branch -M main
git remote add origin <your-repo-url>
git push -u origin mainpip install -r requirements.txtpython server.pyIf you need to use Render's dynamic port, update the server.py to use:
import os
port = int(os.environ.get("PORT", 8000))
mcp.run(transport="http", host="0.0.0.0", port=port)But the current configuration should work fine as is.
Once deployed, your MCP server will be available at:
https://your-service-name.onrender.com/mcpYou can test the server by connecting an MCP client to the endpoint, or use curl:
# Health check
curl https://your-service-name.onrender.com/health
# Test the MCP endpoint (requires MCP client)
# Your MCP client should connect to: https://your-service-name.onrender.com/mcpqueryprompt (string) - any text input"viincci_rag"Add this configuration to your MCP client:
{
"mcpServers": {
"viincci_rag": {
"url": "https://your-service-name.onrender.com/mcp",
"transport": "http"
}
}
}MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.