process_flutter_mentions
Extract @flutter_mcp mentions from text and retrieve precise documentation for Flutter/Dart classes, pub.dev packages, and version-specific details.
Instructions
Parse text for @flutter_mcp mentions and return relevant documentation.
NOTE: This tool is maintained for backward compatibility. For new integrations, consider using the unified tools directly:
- flutter_docs: For Flutter/Dart classes and pub.dev packages
- flutter_search: For searching Flutter/Dart documentation
Supports patterns like:
- @flutter_mcp provider (pub.dev package - latest version)
- @flutter_mcp provider:^6.0.0 (specific version constraint)
- @flutter_mcp riverpod:2.5.1 (exact version)
- @flutter_mcp dio:>=5.0.0 <6.0.0 (version range)
- @flutter_mcp bloc (latest version keyword)
- @flutter_mcp material.AppBar (Flutter class)
- @flutter_mcp dart.Future (Dart API)
- @flutter_mcp Container (widget)
Args: text: Text containing @flutter_mcp mentions tokens: Maximum token limit for each mention's documentation (default: 4000, min: 500)
Returns: Dictionary with parsed mentions and their documentation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | ||
tokens | No |