◆ v1.4.0 — MCP Tools • Claude Code Skills • Auto-install

PPM
PAI Package Manager

The official package registry for MakerAI and PascalAI. Install libraries, MCP tools and Claude Code skills in seconds.

$ ppm install mcp-github
$ ppm install skill-code-review
$ ppm skill install-claude
⬇ Download PPM Browse MCP Tools Claude Code Skills All Packages + Publish your package
153+
MCP Tools
200+
Total Packages
4+
Claude Code Skills
Open
Registry
MD5 integrity verified on every install PPM Certified packages reviewed for safety Tamper detection — corrupted files are rejected HTTPS — all transfers encrypted
⬇ Free Download — v1.2.0

Get PPM — the PAI Package Manager

A single binary, no dependencies, no runtime required. Download, add to PATH, and start installing MCP tools, libraries and Claude Code skills in seconds.

🏗
Windows
x64 — No installer needed
⬇ ppm-windows-x64.exe
MD5 verified • HTTPS • v1.2.0
# Add to PATH (PowerShell)
Move-Item ppm-windows-x64.exe ppm.exe
$env:PATH += ";$PWD"
🐧
Linux x64
amd64 — Ubuntu, Debian, Fedora…
⬇ ppm-linux-x64
MD5 verified • HTTPS • v1.2.0
# Add to PATH (Bash)
chmod +x ppm-linux-x64
sudo mv ppm-linux-x64 /usr/local/bin/ppm
📱
Linux ARM64
arm64 — 811 KB — Raspberry Pi, AWS Graviton…
⬇ ppm-linux-arm64
# Add to PATH (Bash)
chmod +x ppm-linux-arm64
sudo mv ppm-linux-arm64 /usr/local/bin/ppm

⚡ Quick Start — 3 steps

1
Download and install PPM
sudo mv ppm-linux-x64 /usr/local/bin/ppm && chmod +x /usr/local/bin/ppm
2
Search and install an MCP tool or package
ppm search github
ppm install mcp-github
3
Register MCP tools in Claude Desktop / Claude Code
ppm mcp register
Updates ~/.claude/claude_desktop_config.json automatically.
Other useful commands: ppm list ppm update mcp-github ppm uninstall mcp-github ppm skill install-claude
🔍
Package Registry

Everything you need to build with MakerAI & PascalAI

From JSON parsing to RAG pipelines — curated libraries and AI modules for every use case.

Core Libraries pai
System & Utilities 13 packages
AI & Intelligence pai
■ Model Context Protocol

153 MCP Tools for Claude Code

MCP tools extend Claude Code with real capabilities: databases, APIs, cloud services, messaging and more. Install any tool in seconds with PPM — or download the binary directly.

① Install via PPM CLI Run ppm install mcp-github — the binary lands in ~/.ppm/mcp/ ready to use.
② Register in Claude Desktop Run ppm mcp register to add all installed tools to your Claude Desktop config automatically.
③ Direct download Click Download on any card below to get the standalone binary for Windows or Linux — no PPM required.
GitHub repos, issues, PRs, files, commits, and search via REST API.
PostgreSQL query, execute, schema inspect, and transaction support.
Slack channels, messages, files, users, and reactions via Web API.
Send messages, photos, files, and manage Telegram bots via Bot API.
Redis get/set/delete, lists, hashes, TTL, pub/sub via HTTP API.
SQLite local database: query, execute, schema, and PRAGMA support.
Kubernetes pods, deployments, services, logs via kubectl API server.
AWS S3 and MinIO: buckets, objects, presigned URLs, upload/download.
LLM chat and completion via OpenAI-compatible API with streaming.
Persistent key-value memory store with search and append for AI agents.
Structured reasoning sessions with thought chains for AI problem solving.
GraphQL query, mutation, introspection, and batch execution over HTTP.
SSH exec, SFTP read/write/list, SCP upload/download for remote servers.
Execute shell commands in bash, cmd or PowerShell with timeout, env vars and working directory control.
Read, write, list, and watch local files and directories from AI agents.
Docker containers, images, volumes, networks and logs via Docker API.
No MCP tools match your search.
Browse all 153 MCP tools  →
◆ Claude Code Skills

Superpowers for Claude Code

Skills are slash commands that extend Claude Code with specialized workflows. Install a skill once and invoke it as /skill-name in any project.

How to install a skill

1 Install: ppm install skill-code-review
2 Activate: ppm skill install-claude — copies skills to Claude Code directory
3 Use: type /code-review inside Claude Code — the skill is available immediately
Or download the .skill file below and place it in ~/.claude/skills/
Reviews code for security vulnerabilities, correctness, performance and best practices. Produces a structured report with severity levels. Invoke: /code-review
↓ Download .skill
Generates comprehensive unit and integration tests using TDD principles and AAA pattern. Covers edge cases and failure scenarios. Invoke: /test-writer
↓ Download .skill
Creates technical documentation: README files, API references, architecture diagrams and usage guides from existing code. Invoke: /doc-writer
↓ Download .skill
Refactors code for clarity, structure and performance. Removes duplication, improves naming, and modernizes patterns — step by step. Invoke: /refactor
↓ Download .skill
No skills match your search.
Browse all skills  →
Getting Started

Up and running in minutes

PPM integrates seamlessly with MakerAI, PascalAI and Claude Code.

01
Install a package
Use the PPM CLI to install any package, MCP tool or skill from the registry. Dependencies are resolved automatically.
$ ppm install json-parser
02
Import in your code
Add the package to your PascalAI or MakerAI source file's uses clause just like any standard unit.
uses json_parser;
03
Install MCP Tools
Install any MCP tool and register it in Claude Desktop with a single command.
$ ppm install mcp-github
$ ppm mcp register
04
Activate Skills
Install a skill and activate it in Claude Code. Invoke it as a slash command from any project.
$ ppm install skill-code-review
$ ppm skill install-claude
05
Publish your own
Share your libraries, MCP tools or skills with the community via the open registry.
$ ppm publish my-pkg
⭑ Open Registry

Publish your package, MCP or skill

PPM is an open registry. Any developer can publish libraries, MCP tools and Claude Code skills and make them available to the entire MakerAI and PascalAI community.

Registration is done via the PPM CLI
# 1. Download PPM → see above
# 2. Create your account
ppm register
# 3. Log in and get your API key
ppm login
# 4. Publish your package
ppm publish

No web form needed — ppm register walks you through username, email and password interactively.

pai Library / Module

Share a PascalAI or MakerAI library — JSON parsers, HTTP clients, AI modules, utilities. Any .pai package.

# 1. Create account
ppm register
# 2. Init your package
ppm init
# 3. Publish
ppm login && ppm publish
mcp MCP Tool

Publish a standalone MCP binary that Claude Code or any MCP-compatible agent can call. Windows and Linux binaries supported.

# Init as MCP type
ppm init --type mcp
# Add binary + schema.json
# Then publish
ppm login && ppm publish
skill Claude Code Skill

Publish a skill — a slash command for Claude Code. Write a .skill file with a YAML frontmatter and your instructions.

# Init as skill type
ppm init --type skill
# Edit your .skill file
# Then publish
ppm login && ppm publish
pai.package manifest (all types)
Library
[package]
name=my-lib
version=1.0.0
type=pai
author=yourname
MCP Tool
[package]
name=mcp-mytool
version=1.0.0
type=mcp
author=yourname

[mcp]
entrypoint=mcp-mytool.exe
For skills: type=skill + include a my-skill.skill file with YAML frontmatter.  →  Full documentation