Mcp Using Claude Desktop — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Using Claude Desktop (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.
This project implements a Model Context Protocol (MCP) server in Python that connects to Claude Desktop and exposes multiple custom tools such as:
Claude can automatically invoke these tools via MCP using stdio communication.
mcp_server_Claude/
│
├── .venv/ # Python virtual environment
│
├── tools/ # All MCP tools
│ ├── __init__.py
│ ├── airbnb.py # Simulated Airbnb tool
│ ├── arxiv.py # ArXiv research tool
│ ├── ddg.py # DuckDuckGo search
│ ├── maths.py # Add & Multiply tools
│ └── wiki.py # Wikipedia search
│
├── server.py # Main MCP server entry point
├── requirements.txt # Python dependencies
└── README.mdpython -m venv .venvWindows
.venv\Scripts\activatemacOS / Linux
source .venv/bin/activatepip install -r requirements.txtadd(a, b)multiply(a, b)Before connecting Claude, always test locally.
cd D:/mcp_server_Claude
python server.pyCTRL + C to stopIf it crashes, Claude will also fail to connect.
%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"custom-tools": {
"command": "D:/mcp_server_Claude/.venv/Scripts/python.exe",
"args": ["D:/mcp_server_Claude/server.py"]
}
}
}Fully close and reopen Claude after editing the config.
Try any of the following prompts:
Add 15 and 25Multiply 6 and 7Search DuckDuckGo for latest AI agent frameworksFind arxiv papers on LLM agentsSearch Airbnb in Bangalore for 2 guestsClaude will automatically call the appropriate tool.
Author: Husen Basha
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.