Agenticworkspace MCP server
Wraps the AgenticWorkspace CLI as a single generic MCP tool for repo workspace scans.
0 stars
Reviews
Write oneNobody has reviewed Agenticworkspace yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Agenticworkspace tools (1, 1 write)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
runwrite actionShells out to the installed `agenticworkspace` CLI with `args` and returns the result. Never raises: a missing binary, a timeout, a non-zero exit, or unparsable stdout all come back as a `{"error": ...}` dict instead of an exception. Example: `run(["scan", "--json", "--path", "/path/to/repo"])` returns the same parsed JSON object `agenticworkspace scan --json --path /path/to/repo` prints to stdout
Public scan report
scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it
- Code scan40 source files scanned20/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 10 days ago15/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
Findings (1)
- mediumsubprocess with shell=True
exec.shell-trueagenticworkspace_cli-0.1.4/src/agenticworkspace/util/git_info.py: …s.run with a fixed argument list (never shell=True, never string-interpolated into a shell…
What the publisher says
From the Agenticworkspace repository's README, as published. We do not edit it. Read it on GitHub
<!-- mcp-name: io.github.RudrenduPaul/agenticworkspace -->
AgenticWorkspace
Point it at any repo. It detects the stack, writes a .workspace/ directory with progressive context and session handoffs, and installs a working Claude Code adapter, all in one command.
npx agenticworkspace-cli initThis is a v0.1 release. Zero installs, zero GitHub stars, first release. 99/99 JavaScript tests and 132/132 Python tests pass. It does what's described below and nothing more. There's an honest comparison against the other tools already working in this space further down, so you can decide if AgenticWorkspace is actually worth trying before you run it.
Table of contents
- Install
- Features
- Quickstart
- CLI reference
- The .workspace/ directory
- Library API reference
- Adapter status
- Extending AgenticWorkspace
- How this compares to repo-harness and harnesskit
- What and why
- Development
- FAQ
Install
AgenticWorkspace ships two independent, equally first-class packages that implement the same scan/scaffold/adapter pipeline and read/write the same .workspace/ directory shape -- pick whichever fits your toolchain, or install both. Neither is deprecated in favor of the other.
# npm -- JavaScript/TypeScript CLI + library (live today, v0.1.3)
npx agenticworkspace-cli init# PyPI -- Python CLI + library (live today, v0.1.1)
pip install agenticworkspace-cli
agenticworkspace init --path /path/to/your/repoTo install from source instead:
git clone https://github.com/RudrenduPaul/AgenticWorkspace.git
cd AgenticWorkspace/python
pip install -e .
agenticworkspace init --path /path/to/your/repoFor repeat use with the npm package, install it globally:
npm install -g agenticworkspace-cli
agenticworkspace initThe Python package's CLI entry point is also agenticworkspace (e.g. agenticworkspace init --path ./my-app); see python/README.md and docs/getting-started.md for the Python-specific walkthrough.
To build the TypeScript package from source instead:
git clone https://github.com/RudrenduPaul/AgenticWorkspace.git
cd AgenticWorkspace
npm install
npm run build
node dist/agenticworkspace/cli.js initFeatures
Everything below is verified against the actual source in this repo, not aspirational.
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
claude mcp add agenticworkspace -- uvx agenticworkspace-cli
Agenticworkspace: common questions
- Is Agenticworkspace MCP server safe?
- Yes, by our scan: it is graded A (85/100). Read the Agenticworkspace safety report
- How do I install Agenticworkspace?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Agenticworkspace need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Agenticworkspace maintained?
- The last commit was 12 days ago (2026-09-13). The latest release is v0.1.4.