firestore_https_flutter 1.0.22
firestore_https_flutter: ^1.0.22 copied to clipboard
Firestore MCP server over streaming HTTP transport deployed to Cloud Run
import 'package:firestore_https_flutter/firestore_https_flutter.dart';
void main() async {
// This is a simple example of how to use the server programmatically.
final server = createServer();
print('Server created: $server');
// In a real scenario, you would connect this server to a transport.
// e.g. await server.connect(StdioServerTransport());
}