Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Codemcp

БесплатноНе проверен

Forwards normalized MCP tools to Codex or Claude Code for agentic coding tasks like starting new sessions, continuing existing ones, and checking status.

GitHubEmbed

Описание

Forwards normalized MCP tools to Codex or Claude Code for agentic coding tasks like starting new sessions, continuing existing ones, and checking status.

README

GitHub Tag Code Style License Last Commit PHP Version Support Packagist Downloads

📟 codemcp 📟

codemcp exposes agentic coding through the official harnesses of Codex and Claude Code as a small mcp server. runs are asynchronous: they execute detached, results are collected by polling — safe behind any transport timeout.

installation

composer require vielhuber/codemcp

setup

.env in the project root (only for mcps via http):

MCP_TOKEN=

usage

every function below is also exposed 1:1 as an mcp tool of the same name.

$code = codemcp::create();

$session = $code->start(
    prompt: 'Fix the failing tests.',
    workdir: '/app',
    provider: 'claude',
    model: 'claude-opus-4-8',
    effort: 'high'
);

$session = $code->wait(
    session_id: $session['session_id'],
    timeout: 120
);

$session = $code->status(
    session_id: $session['session_id']
);
$code->status();

$session = $code->continue(
    session_id: $session['session_id'],
    prompt: 'Now also fix the linter warnings.'
);

$session = $code->stop(
    session_id: $session['session_id']
);

$providers = $code->providers();

When workdir is omitted, each new session gets a random isolated directory under sys_get_temp_dir()/codemcp/. An explicit directory is created recursively when it does not exist, so new projects start in their final workspace and retain folder continuity. model and effort are required for every new session. Supported effort values are minimal, low, medium, high and xhigh.

tests

./vendor/bin/phpunit

from github.com/vielhuber/codemcp

Установка Codemcp

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/vielhuber/codemcp

FAQ

Codemcp MCP бесплатный?

Да, Codemcp MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Codemcp?

Нет, Codemcp работает без API-ключей и переменных окружения.

Codemcp — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Codemcp в Claude Desktop, Claude Code или Cursor?

Открой Codemcp на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Codemcp with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development