提交

Cvm: Stateful Programable Task Engine

@LadislavSopko

Stop Claude from losing track. CVM is a passive state machine that Claude queries for tasks, maintaining perfect execution flow across complex operations. The Problem "Claude, analyze these 1000 files and create a report" → Claude gets confused, loses context, forgets what it's doing. The Solution CVM is a passive MCP server that holds program state. You write a program with loops and logic, but Claude only sees one task at a time. Claude asks "what's next?", completes the task, and asks again. The magic: CVM never pushes tasks. Claude pulls tasks when ready, maintaining perfect control while CVM quietly manages state between requests.

工具

load

loadFile

start

getTask

submitTask

status

list_executions

get_execution

set_current

delete_execution

list_programs

delete_program

restart

服务器配置

{
  "mcpServers": {
    "cvm": {
      "command": "npx",
      "args": [
        "cvm-server@latest"
      ],
      "env": {
        "CVM_STORAGE_TYPE": "file",
        "CVM_DATA_DIR": ".cvm"
      }
    }
  }
}
© 2025 MCP.so. All rights reserved.

Build with ShipAny.

- MCP Server