antigravity-terminal-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@antigravity-terminal-mcprun 'Get-Process' in PowerShell"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Antigravity Terminal MCP
Windows-focused MCP server for terminal automation with persistent sessions and live session logs. Created by AATHI.
Features
Persistent PowerShell sessions (
session_id, default:default)Incremental
stdout/stderrpollingSend follow-up input into running sessions
Live log file path returned for each session
Configurable monitor mode via
ANTIGRAVITY_MONITOR_MODEVS Code integrated terminal metadata returned for each session
MCP standard methods (
tools/list,tools/call) with legacy aliases
Related MCP server: interminal
MCP Tools
run_commandcommand_statussend_inputlist_sessionssession_visual_infokill_command
Publish-Ready One-Command Usage (From GitHub)
After pushing this project to your GitHub, users can seamlessly install and attach it to Claude using uvx (or the more robust python -m uv variant for Windows):
# Standard uvx (if in PATH)
claude mcp add antigravity-terminal-mcp uvx --from git+https://github.com/aathishwar-13/antigravity-terminal-mcp.git antigravity-terminal-mcp
# More robust Windows version (if uvx is not in PATH)
claude mcp add antigravity-terminal-mcp python -m uv tool run --from git+https://github.com/aathishwar-13/antigravity-terminal-mcp.git antigravity-terminal-mcp(Note: If the code is nested in a subdirectory, simply append #subdirectory=folder_name to the git URL).
Local Run
uvx --from . antigravity-terminal-mcpor
python server.pyMonitor Modes
By default, the server does not open an external monitor window (ANTIGRAVITY_MONITOR_MODE=none).
This keeps monitoring in VS Code when you use the integrated terminal bridge.
If you explicitly want a separate PowerShell window for each session monitor, enable external mode:
$env:ANTIGRAVITY_MONITOR_MODE = "external"
python server.pyTo force no external monitor window:
$env:ANTIGRAVITY_MONITOR_MODE = "none"
python server.pyWhen run_command or session_visual_info is called, the response now includes:
log_pathwatch_commandmonitor_modevscode_terminalmonitor_open(quick-open metadata for clickable/open actions)
monitor_open includes:
command_uri(VS Code command URI forantigravityTerminal.openMonitor)markdown_link(prebuilt markdown clickable link for chat UIs)integrated_terminal_command(copy/paste command to open live monitor in integrated terminal)open_terminal_uri(opens a VS Code integrated terminal)open_terminal_with_cwd_uri(opens integrated terminal in session cwd)run_in_active_terminal_uri(runs monitor command in active integrated terminal)
The vscode_terminal object is designed for a VS Code extension to open the same session monitor inside an integrated terminal.
VS Code Integrated Terminal Bridge
A lightweight extension scaffold lives in vscode-integration/.
What it does
Opens an integrated PowerShell terminal in the current VS Code window
Runs the returned
watch_command/vscode_terminal.commandLets you paste either the full
session_visual_infoJSON or just thelog_pathShows a status-bar button:
MCP Monitor(bottom-right) to pick and open any existing session monitorAuto-detects
session_logs/*.logcreate/change activity and shows anOpen Monitorpopup action
How to try it locally
Open
antigravity_mcp/vscode-integrationin VS Code.Press
F5to launch the extension host.Run
Antigravity: Open Monitor From Session Info JSONfrom the Command Palette.Paste the JSON returned by
session_visual_infoorrun_command.
Where to click
Bottom-right VS Code status bar: click
MCP Monitorand choose a sessionOn new session creation: click
Open Monitorin the popup notification
This uses the VS Code extension API, which is the correct way to open an integrated terminal in the current editor window. A plain Python process cannot directly create a terminal tab inside VS Code by itself.
Quick Integrated Monitor Command (No Copy/Paste)
Use the helper script from a VS Code integrated terminal:
Set-Location d:\Projects\Client_projects\Velyx_Chatbot\antigravity_mcp
.\open-monitor.ps1 -SessionId live-agentOptional short alias for the current terminal session:
Set-Alias agmwatch .\open-monitor.ps1
agmwatch -SessionId live-agentThis keeps monitoring inside VS Code and does not open an external terminal window.
Example MCP Config
{
"mcpServers": {
"antigravity-terminal-mcp": {
"command": "python",
"args": [
"-m",
"uv",
"tool",
"run",
"--from",
"git+https://github.com/aathishwar-13/antigravity-terminal-mcp.git",
"antigravity-terminal-mcp"
]
}
}
}Or
{
"mcpServers": {
"antigravity-terminal-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/AATHI/antigravity-terminal-mcp.git",
"antigravity-terminal-mcp"
]
}
}
}👨💻 About the Author
AATHI is a developer focused on building high-performance, developer-centric automation tools for the next generation of AI agents. With a specialization in bridging the gap between headless LLM execution and rich user-facing terminal interactions, AATHI created this tool to provide a portable, professional terminal experience beyond the standard VS Code integration limits.
Feel free to reach out for feedback or technical support via this repository!
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aathishwar-13/antigravity-terminal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server