A

A2CR

Save AI-agent handoff checkpoints, WorkStash notes, and WorkThreads in a local A2CR workspace.

A2CR·No reviews yet
Repo Docs
Share:

About

Save AI-agent handoff checkpoints, WorkStash notes, and WorkThreads in a local A2CR workspace.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about A2CR.

What is the A2CR server used for?
The A2CR server is designed to save AI-agent handoff checkpoints, WorkStash notes, and WorkThreads. It provides a local workspace for managing these various AI-related assets collaboratively.
How can I install A2CR in an MCP client like Cline?
A2CR uses stdio for transport. For Cline, you typically specify the server's executable path in the client's configuration. The exact steps may vary depending on your Cline version and operating system.
Does A2CR require an API key or other credentials for authentication?
No, A2CR does not require an API key, OAuth, or other credentials. It uses a 'none' authentication type, making it straightforward to integrate into your local environment.
What are the core capabilities exposed by A2CR?
A2CR's core capabilities revolve around saving and managing AI-agent handoff checkpoints, WorkStash notes, and WorkThreads. These are stored within a local workspace, facilitating productivity.
How much does it cost to use the A2CR server?
A2CR is an open-source project hosted on GitHub, implying it is free to use. Any costs would be related to your local infrastructure or client-side tooling, not the A2CR server itself.
What is a common prerequisite for running A2CR?
A common prerequisite for running A2CR locally is ensuring you have the necessary system dependencies and runtime environment for its stdio transport. Specific requirements are detailed in the project's repository documentation.

Install A2CR

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "a2cr": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-a2cr"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "a2cr": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-a2cr"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "a2cr": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-a2cr"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.