Server data from the Official MCP Registry
Standalone MCP server with PASH compression. Saves ~87% LLM tokens via dynamic tool registration.
Standalone MCP server with PASH compression. Saves ~87% LLM tokens via dynamic tool registration.
This is a developer tools MCP server with reasonable security posture. The codebase demonstrates proper dependency management, standard MCP patterns, and environment-based configuration. The test fixture file contains only benign repetitive code. No critical vulnerabilities, hardcoded secrets, or malicious patterns were identified. Minor code quality observations are typical for test fixtures and do not impact production security. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 4 high severity).
3 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-akynzh-pash-mcp-server": {
"args": [
"felix-mcp-standalone"
],
"command": "uvx"
}
}
}From the project's GitHub README.
Standalone MCP Server with PASH Compression (Phoenix Architecture)
Этот проект представляет собой минимальный, production-ready Model Context Protocol (MCP) сервер, извлеченный из экосистемы Felix. Он разработан для предоставления внешних инструментов (Cursor, Claude Desktop и др.) с максимальной экономией токенов благодаря встроенному PASH-сжатию.
mcp_engines и загрузка инструментов из manifest.json.stdio с конфигурацией через .env.Для разработчиков, вносящих изменения в серверную часть (sse_server.py, тесты): строго соблюдайте паттерн Surgical Process Cleanup by Port. Глобальное убийство процессов (taskkill /IM) категорически запрещено, так как оно обрывает агентскую сессию.
Felix MCP Standalone is a self-contained product. It shares principles, not code with the internal Felix core (C:\Users\53\Felix).
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.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/felix-mcp-standalone.git
cd felix-mcp-standalone
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).
felix-mcp-standalone/
├── server.py # Точка входа (FastMCP)
├── src/
│ ├── config.py # Pydantic-конфигурация
│ ├── router.py # Сканер и JSON-RPC прокси
│ └── compressor.py # Ядро PASH-сжатия
├── config/
│ └── manifest.example.json # Пример манифеста
└── tests/ # Изолированные тесты
This repository serves as the cognitive core designed to be paired with an interface like Odysseus.
We believe in shipping what works and clearly labeling what is being built.
MIT License (c) 2026 AkynZH
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.