A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that enables AI agents (Claude Code, Cursor, Windsurf, OpenCode) to launch
If you already use MCP Tuikit, the mcp tuikit mcp server is the piece that lets your assistant work with it directly. A Model Context Protocol (MCP) server that enables AI agents (Claude Code, Cursor, Windsurf, OpenCode) to launch, interact with, and observe any terminal application in isolated sessions. mcp-tuikit.
@dragoscirjan/mcp-tuikit on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
terminal — //session/{id}/screen.txt?maxLines={limit}: Read the raw plaintext buffer of the active terminal sessioncreate_session — command, cols?, rows?close_session — session_idcreate_snapshot — session_id, format (txt/png/both), intent?send_keys — session_id, keys, submit? (bool)wait_for_text — session_id, pattern, timeout_ms?run_flow — yaml_path?, yaml_string?, cols?, rows?list_sessions — (none)check_system_dependencies — (none)Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Tuikit's toolset — terminal, create_session, close_session and 6 more — is a fair guide to whether it matches your workflow. It is maintained by dragoscirjan; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| terminal | //session/{id}/screen.txt?maxLines={limit}: Read the raw plaintext buffer of the active terminal session. |
| create_session | command, cols?, rows? |
| close_session | session_id |
| create_snapshot | session_id, format (txt/png/both), intent? |
| send_keys | session_id, keys, submit? (bool) |
| wait_for_text | session_id, pattern, timeout_ms? |
| run_flow | yaml_path?, yaml_string?, cols?, rows? |
| list_sessions | _(none)_ |
| check_system_dependencies | _(none)_ |
{
"mcpServers": {
"mcp-tuikit": {
"command": "npx",
"args": ["-y", "@dragoscirjan/mcp-tuikit"]
}
}
}Configuration as documented by the project. Restart the client after saving.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.