Files
delegate-ai-mcp/package.json
T
haylanandClaude-Bot c3b6a9d5b5 Initial commit: qwen delegation MCP server, tracker setup, research
- qwen_delegate MCP tool: src/qwen-delegate.ts (testable core, subprocess
  spawn/timeout/parse) + src/qwen-delegate-server.ts (thin MCP stdio wiring)
- test/qwen-delegate.test.ts (node:test, mocked spawn)
- docs/agents/* + CLAUDE.md from /setup-matt-pocock-skills (Gitea issue
  tracker via tea CLI, default triage labels, single-context domain docs)
- research/qwen-mcp-delegation.md, corrected after confirming qwen-code
  runs natively on Windows (no WSL) against a local OpenAI-compatible proxy

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CRnb5Gqdu7gVTQrwAqFdfJ
2026-09-06 16:43:49 +02:00

16 lines
378 B
JSON

{
"name": "delegate-ai-mcp",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "MCP server that delegates light work from Claude Code to a local qwen-code CLI.",
"scripts": {
"start": "node src/qwen-delegate-server.ts",
"test": "node --test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^3.24.0"
}
}