Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Standalone MCP server with PASH compression. Saves ~87% LLM tokens via dynamic tool registration.

README.md

Felix Standalone MCP Server

Standalone MCP Server with PASH Compression (Phoenix Architecture)

Этот проект представляет собой минимальный, production-ready Model Context Protocol (MCP) сервер, извлеченный из экосистемы Felix. Он разработан для предоставления внешних инструментов (Cursor, Claude Desktop и др.) с максимальной экономией токенов благодаря встроенному PASH-сжатию.

Особенности (Phoenix Architecture)

  • Чистое ядро: Никаких скрытых зависимостей от монолитной кодовой базы Феликса.
  • Динамическая регистрация: Автоматическое сканирование директории mcp_engines и загрузка инструментов из manifest.json.
  • PASH Compression: Интеллектуальное сжатие тяжелых JSON-ответов (экономия >80% токенов) с прозрачным возвратом хэша.
  • Zero-config запуск: Работает через stdio с конфигурацией через .env.

⚠️ Безопасность и Runtime

Для разработчиков, вносящих изменения в серверную часть (sse_server.py, тесты): строго соблюдайте паттерн Surgical Process Cleanup by Port. Глобальное убийство процессов (taskkill /IM) категорически запрещено, так как оно обрывает агентскую сессию.

Architecture Boundaries

Felix MCP Standalone is a self-contained product. It shares principles, not code with the internal Felix core (C:\Users\53\Felix).

  • Product Judge (in src/product_judge.py) is an independent implementation of deterministic validation. It shares the principle of "structural validation before output" with the internal Mirror Forge Synthesis, but has zero shared code by design. This is intentional technical debt prevention.
  • Cognitive Loop and PASH compression are implemented directly in this repository. They do not import from or depend on the internal Felix core. This ensures the product can be deployed, tested, and maintained independently.

Why this matters: When you install this package, you get a complete, autonomous system. No hidden dependencies on internal infrastructure.

Установка

git clone https://github.com/AkynZH/pash-mcp-server.git
cd pash-mcp-server
pip install -e .

Конфигурация

Скопируйте .env.example в .env и настройте пути:

MCP_ENGINES_DIR=./mcp_engines
LOG_LEVEL=INFO
PASH_MIN_THRESHOLD=500

Создайте директорию mcp_engines и поместите в неё подпапки с manifest.json и исполняемыми файлами ваших MCP-серверов.

Запуск

python server.py

Сервер запустится в режиме stdio и будет готов к подключению через совместимые клиенты (например, Claude Desktop).

Структура проекта

pash-mcp-server/
├── server.py                  # Точка входа (FastMCP)
├── src/
│   ├── config.py              # Pydantic-конфигурация
│   ├── router.py              # Сканер и JSON-RPC прокси
│   └── compressor.py          # Ядро PASH-сжатия
├── config/
│   └── manifest.example.json  # Пример манифеста
└── tests/                     # Изолированные тесты

Odysseus Integration Status

This repository serves as the cognitive core designed to be paired with an interface like Odysseus.

  • Completed & Shipped: Cognitive Loop, PASH compression, Product Judge, and heuristic routing are fully implemented and tested.
  • 🗺️ Roadmap: Native, one-click UI integration with the Odysseus agent (combining local reflexes with this cognitive core) is currently in active development.

We believe in shipping what works and clearly labeling what is being built.

Лицензия

MIT License (c) 2026 AkynZH

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.