Human Path: Client Setup
Use this page when you want to configure AI clients yourself.
Shared Rules For All Clients
- Keep other existing MCP servers in your config.
- Add or merge only the
flutter-inspectorentry. - Use an absolute path to
mcp_server_dart/build/flutter_inspector_mcp.
Codex
{
"mcpServers": {
"flutter-inspector": {
"command": "/ABSOLUTE/PATH/mcp_flutter/mcp_server_dart/build/flutter_inspector_mcp",
"args": [
"--dart-vm-host=localhost",
"--dart-vm-port=8181",
"--resources",
"--images",
"--dynamics"
],
"env": {},
"disabled": false
}
}
}
Cursor
Use --no-resources because Cursor resource handling may be limited.
{
"mcpServers": {
"flutter-inspector": {
"command": "/ABSOLUTE/PATH/mcp_flutter/mcp_server_dart/build/flutter_inspector_mcp",
"args": [
"--dart-vm-host=localhost",
"--dart-vm-port=8181",
"--no-resources",
"--images",
"--dynamics"
],
"env": {},
"disabled": false
}
}
}
Claude Desktop
On macOS, config is commonly in ~/Library/Application Support/Claude/claude_desktop_config.json.
{
"mcpServers": {
"flutter-inspector": {
"command": "/ABSOLUTE/PATH/mcp_flutter/mcp_server_dart/build/flutter_inspector_mcp",
"args": [
"--dart-vm-host=localhost",
"--dart-vm-port=8181",
"--resources",
"--images",
"--dynamics"
],
"env": {},
"disabled": false
}
}
}