Technical specifications for tool integration and Antigravity local environment synchronization.
MCP Benefits: The MCP protocol allows seamless integration of local development tools (linters, generators, analyzers) into the context of AI agents, ensuring predictability and FSD compliance.
Fastest and most stable method for development. Uses a local script via npx.
1{
2 "mcpServers": {
3 "mcp-react-frontend-local": {
4 "command": "npx",
5 "args": ["-y", "tsx", "scripts/mcp-stdio.ts"],
6 "cwd": "D://<path_to_project_root>"
7 }
8 }
9}Connection via HTTP to a running server on localhost. Requires mcp-remote.
1{
2 "mcpServers": {
3 "mcp-react-frontend-http": {
4 "command": "npx",
5 "args": ["-y", "mcp-remote", "http://localhost:3000/api/mcp"]
6 }
7 }
8}Using a deployed server. Note the 'warm-up' time (cold start) up to 60 seconds.
1{
2 "mcpServers": {
3 "mcp-react-frontend-remote": {
4 "command": "npx",
5 "args": ["-y", "mcp-remote", "https://mcp-react-frontend.vercel.app/api/mcp"]
6 }
7 }
8}1{
2 "mcpServers": {
3 "mcp-react-frontend-remote": {
4 "command": "npx",
5 "args": ["-y", "mcp-remote", "https://mcp-react-frontend.onrender.com/api/mcp"]
6 }
7 }
8}Analyzes project files for FSD and naming conventions compliance.
Retrieves current project rules from RulesProvider.
Generates FSD entity structure (api, types, schema, converters, ui).