Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"flutter-deprecations": {
"env": {},
"args": [],
"command": "/path/to/flutter-deprecations-server/bin/flutter-deprecations-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This MCP server tracks Flutter API deprecations and provides tools to check code for deprecated APIs and suggest replacements.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Mcp Flutter Deprecations Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This MCP server tracks Flutter API deprecations and provides tools to check code for deprecated APIs and suggest replacements.
flutter-deprecations-server/
├── cmd/
│ └── server/ # Main application entry point
│ └── main.go
├── internal/ # Private application code
│ ├── handlers/ # MCP tool handlers
│ │ ├── mcp_handlers.go
│ │ ├── mcp_handlers_test.go
│ │ └── testdata/
│ ├── models/ # Data structures
│ │ └── flutter.go
│ └── services/ # Business logic
│ ├── cache.go
│ ├── cache_test.go
│ ├── deprecations.go
│ ├── deprecations_test.go
│ ├── flutter_api.go
│ ├── flutter_api_test.go
│ ├── flutter_version.go
│ ├── interfaces.go
│ ├── version_info.go
│ ├── version_info_test.go
│ └── testdata/
├── pkg/ # Public libraries
│ └── config/ # Configuration constants
│ └── config.go
├── bin/ # Compiled binaries
├── Makefile # Build automation
├── go.mod # Go module definition
├── go.sum # Dependency checksums
└── README.md
@Deprecated annotations-vvv flag for troubleshootingcheck_flutter_deprecationsAnalyzes provided Flutter code for deprecated APIs and suggests replacements.
Parameters:
code (string): Flutter code snippet to analyzeExample:
Color.red.withOpacity(0.5) // Will suggest Color.red.withValues(alpha: 0.5)
list_flutter_deprecationsLists all known Flutter deprecations from the cache.
Parameters: None
Returns: Complete list of deprecations with replacements and version information.
check_flutter_version_infoGets the latest stable Flutter version and checks availability across different tools and platforms.
Parameters: None
Returns:
instrumentisto/flutter and ghcr.io/cirruslabs/flutterThe server includes built-in patterns for common deprecations:
Color.withOpacity() → Color.withValues(alpha:)RaisedButton → ElevatedButtonFlatButton → TextButtonOutlineButton → OutlinedButtonScaffold.of(context).showSnackBar → ScaffoldMessenger.of(context).showSnackBar# Install dependencies
make deps
# Build the server
make build
# Run the server
make run
# Build for multiple platforms
make build-all
# Install dependencies
go mod tidy
# Build the server
go build -o bin/flutter-deprecations-server ./cmd/server
# Run the server
./bin/flutter-deprecations-server
# Update deprecations cache manually
./bin/flutter-deprecations-ser
... [View full README on GitHub](https://github.com/jger/mcp-flutter-deprecations-server#readme)