Metadata-Version: 2.4
Name: devtool-mcp
Version: 0.6.0
Summary: DEPRECATED: This package has been renamed to 'agnt'. Please install 'agnt' instead.
Project-URL: Homepage, https://standardbeagle.github.io/agnt/
Project-URL: Documentation, https://standardbeagle.github.io/agnt/
Project-URL: Repository, https://github.com/standardbeagle/agnt
Project-URL: Issues, https://github.com/standardbeagle/agnt/issues
Project-URL: Changelog, https://github.com/standardbeagle/agnt/blob/main/CHANGELOG.md
Author-email: Standard Beagle <dev@standardbeagle.com>
License-Expression: MIT
License-File: LICENSE
Keywords: accessibility,ai,debugging,deprecated,development,devtools,diagnostics,frontend,mcp,model-context-protocol,process-management,proxy
Classifier: Development Status :: 7 - Inactive
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: Proxy Servers
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.10
Requires-Dist: agnt>=0.5.1
Description-Content-Type: text/markdown

# devtool-mcp (DEPRECATED)

> **This package has been renamed to [`agnt`](https://pypi.org/project/agnt/).** Please install `agnt` instead.

## Migration

```bash
pip uninstall devtool-mcp
pip install agnt
```

Then update your MCP configuration:

**Before:**
```json
{
  "mcpServers": {
    "devtool": {
      "command": "devtool-mcp"
    }
  }
}
```

**After:**
```json
{
  "mcpServers": {
    "agnt": {
      "command": "agnt",
      "args": ["serve"]
    }
  }
}
```

## Why the rename?

The project has evolved beyond just development tooling into a full AI coding agent toolkit. The new name `agnt` better reflects its capabilities:

- Process management for development workflows
- Reverse proxy with traffic logging and browser instrumentation
- 50+ diagnostic primitives for frontend debugging
- Sketch mode for wireframing directly on your UI
- PTY wrapper for AI coding tools (Claude Code, Gemini, etc.)

## New Features in agnt

- `agnt run claude` - Wrap AI tools with overlay features
- `agnt serve` - Run as MCP server
- Sketch mode for wireframing
- Floating indicator panel
- Toast notifications

See the [agnt documentation](https://standardbeagle.github.io/agnt/) for details.

## Backward Compatibility

This wrapper package will continue to work but will not receive updates. The `devtool-mcp` command will forward to `agnt` with a deprecation notice.

## License

MIT
