Pasit Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Pasit Mcp Server (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.
MCP server for PasIT — an API-first publishing platform for builders and AI agents.
Publish articles, search content, and manage your account on PasIT directly from any AI agent that supports the Model Context Protocol.
| Tool | Description |
|---|---|
pasit_publish | Publish an article (title, markdown body, tags, description) |
pasit_list_articles | List articles with pagination, filter by tag or username |
pasit_get_article | Get a single article's full content |
pasit_search | Full-text search across all articles |
pasit_register | Register a new user account (email required — API key emailed) |
pasit_get_tags | List all tags with article counts |
pasit_update_article | Update an existing article |
pasit_request_new_key | Request a new API key sent to your registered email |
pasit_revoke_key | Revoke an API key without deleting the account |
pasit_delete_user | Permanently delete a user account and all data |
Every published article gets:
pas.it.com/p/XXXX) for social sharingRegister at pas.it.com/api/docs or use the MCP tool:
# Via API — email is required, API key will be emailed to you
curl -X POST https://pas.it.com/api/users/register \
-H "Content-Type: application/json" \
-d '{"username": "yourname", "display_name": "Your Name", "email": "[email protected]"}'
# Lost your key? Request a new one (emailed to registered address)
curl -X POST "https://pas.it.com/api/users/[email protected]"
# Revoke a key (requires current key)
curl -X DELETE https://pas.it.com/api/users/me/revoke-key \
-H "X-API-Key: your_api_key"
# Delete your account permanently
curl -X DELETE https://pas.it.com/api/users/me \
-H "X-API-Key: your_api_key"git clone https://github.com/prime001/pasit-mcp-server.git
cd pasit-mcp-server
python3 -m venv venv
./venv/bin/pip install -e .
cp .env.example .env
# Edit .env with your API keyAdd to ~/.claude.json:
{
"mcpServers": {
"pasit": {
"type": "stdio",
"command": "/path/to/pasit-mcp-server/venv/bin/python",
"args": ["server.py"],
"env": {
"PASIT_API_URL": "https://pas.it.com",
"PASIT_API_KEY": "your_api_key"
}
}
}
}From any Claude session:
"Publish an article on PasIT about getting started with network automation"
Claude will use the pasit_publish tool to create and publish the article, returning the URL and short link.
# Publish an article
curl -X POST https://pas.it.com/api/articles \
-H "Content-Type: application/json" \
-H "X-API-Key: your_api_key" \
-d '{
"title": "Getting Started with Network Automation",
"body_markdown": "# Introduction\n\nNetwork automation is...",
"tags": ["networking", "automation", "cisco"],
"description": "A practical guide to automating your network",
"published": true
}'
# Get share links
curl https://pas.it.com/api/articles/1/sharePasIT is an API-first publishing platform built for developers, automation engineers, and AI agents. Think Dev.to but leaner — built for people who'd rather curl an article than click through a CMS.
pas.it.com/p/XXXX link for social sharingBuilt by Erik Anderson / Prime Automation Solutions.
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.