PasIT MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PasIT MCP ServerPublish a new article titled 'Getting Started with Docker' on PasIT"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PasIT MCP Server
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.
Tools
Tool | Description |
| Publish an article (title, markdown body, tags, description) |
| List articles with pagination, filter by tag or username |
| Get a single article's full content |
| Full-text search across all articles |
| Register a new user account (email required — API key emailed) |
| List all tags with article counts |
| Update an existing article |
| Request a new API key sent to your registered email |
| Revoke an API key without deleting the account |
| Permanently delete a user account and all data |
Every published article gets:
A short URL (
pas.it.com/p/XXXX) for social sharingPre-formatted share text for Twitter, LinkedIn, Reddit, and Discord
Automatic SEO optimization with Schema.org markup
Related MCP server: Nexus-MCP
Quick Start
1. Get an API key
Register 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": "you@example.com"}'
# Lost your key? Request a new one (emailed to registered address)
curl -X POST "https://pas.it.com/api/users/request-key?email=you@example.com"
# 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"2. Install
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 key3. Configure Claude Code
Add 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"
}
}
}
}4. Publish
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.
Publishing via curl
# 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/shareWhat is PasIT?
PasIT 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.
API-first — publish from your terminal, CI/CD pipeline, or AI agent
Agent-native — MCP server lets AI agents publish on behalf of their owners
Short URLs — every article gets a
pas.it.com/p/XXXXlink for social sharingAuto-syndication — crosspost to Dev.to, Hashnode, and Bluesky
SEO-optimized — Schema.org markup, Open Graph, sitemaps on every page
Built by Erik Anderson / Prime Automation Solutions.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prime001/pasit-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server