Install Devopness MCP Server on AntiGravity
This guide walks you through installing and configuring the Devopness MCP server on AntiGravity by Google.
Prerequisites
- AntiGravity installed on your machine
- A Devopness account with a Personal Access Token
How Devopness integrates with AntiGravity
Devopness provides a remote MCP server that AntiGravity connects to through its native HTTP support. Once configured, the Devopness tools become available in the AntiGravity agent panel.
Configure the MCP server
-
Open the AntiGravity agent panel
-
Click the "..." dropdown at the top of the editor panel
-
Select MCP Servers to open the MCP Store
-
Click Manage MCP Servers, then select View raw config
-
This opens the configuration file located at:
- macOS/Linux:
~/.gemini/antigravity/mcp_config.json - Windows:
C:\Users\<USERNAME>\.gemini\antigravity\mcp_config.json
- macOS/Linux:
-
Add the following configuration, replacing
YOUR_PERSONAL_ACCESS_TOKENwith your Devopness Personal Access Token:
{
"mcpServers": {
"devopness": {
"serverUrl": "https://mcp.devopness.com/mcp/",
"headers": {
"Authorization": "Bearer YOUR_PERSONAL_ACCESS_TOKEN"
}
}
}
}
- Save the file. AntiGravity automatically reloads the configuration.
Activate and verify the connection
- Open the MCP Servers panel from the "..." dropdown
- Check the status indicator next to the Devopness server
- Verify that the Devopness tools are listed and available
Use the MCP server
In the AntiGravity agent panel, try a prompt such as:
- "List my Devopness projects"
- "Show the servers in my production environment"
- "Deploy my application to staging"
Troubleshooting
- Server not appearing: Verify that the JSON syntax in
mcp_config.jsonis valid. Save and reopen the MCP Servers panel. - Authentication errors: Verify that your Personal Access Token is correct and has not expired.
- Tool limit: For optimal performance, keep the total number of enabled MCP tools under 50.
- Alternative configuration: If the native
serverUrlapproach has issues, try using themcp-remoteproxy instead. This requires Node.js to be installed:
{
"mcpServers": {
"devopness": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.devopness.com/mcp/",
"--header",
"Authorization: Bearer YOUR_PERSONAL_ACCESS_TOKEN"
]
}
}
}