flutter-stripe-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| diagnose_setupA | Diagnose a Flutter + Stripe (flutter_stripe) project setup. Android checks: Kotlin version, Gradle wrapper version, theme parents, MainActivity base class, ProGuard rules. iOS checks: minimum deployment target, camera usage permission. Args: project_path: Absolute path to the Flutter project root (the directory containing android/ and ios/). Returns: {"ok": [names of passed checks], "issues": [{"check", "status", "fix", ...} for each problem found]} |
| search_flutter_stripe_issuesA | Search GitHub issues in the flutter_stripe repository (flutter-stripe/flutter_stripe). Use this to check whether a problem you're debugging (an error message, a crash, an unexpected behavior) is already a known, reported issue — before assuming it's novel or trying to work around it from scratch. Returns short excerpts so you can judge relevance; call get_flutter_stripe_issue with a specific issue number to read the full discussion and find the documented fix or workaround. If an exact-match search (all words present) finds nothing, this automatically retries with a broader "any of these words" search and marks the result with "broadened_search": true — treat those results as lower-confidence and check relevance via the excerpt before following up with get_flutter_stripe_issue. Args: query: Free-text search terms (e.g. an error message or symptom). state: "all" (default), "open", or "closed". limit: Max number of results to return (1-30). Returns: {"total_count": int, "results": [{"number", "title", "state", "url", "excerpt"}]} (plus "broadened_search"/"note" if a broader fallback search was used), or {"error": "...", "kind": "..."} on failure (e.g. rate-limited). |
| get_flutter_stripe_issueA | Fetch the full body and comments of one flutter_stripe GitHub issue. Use this after search_flutter_stripe_issues has identified a candidate issue number, to read the complete discussion — maintainer replies and community comments often contain the actual fix, workaround, or root cause that a title/excerpt alone won't reveal. Args: issue_number: The GitHub issue number (e.g. 1234), not a URL. Returns: {"number", "title", "state", "url", "body", "comments": [{"author", "body"}]} (plus "note" if the comment thread was too long to fetch in full), or {"error": "...", "kind": "..."} on failure (e.g. not found). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: diagnosing local project setup, searching GitHub issues, and retrieving a full issue. There is no functional overlap or ambiguity between them.
All tool names follow a consistent verb_noun snake_case pattern (diagnose_setup, search_flutter_stripe_issues, get_flutter_stripe_issue). Naming style and verb usage are uniform.
Three tools is at the lower bound but appropriate for the narrow scope of Flutter Stripe diagnostics and issue research. Each tool earns its place and there is no redundancy.
The set covers the core workflow: diagnose a setup problem, search for known issues, and read full discussion for fixes. Minor gaps exist such as no direct tool for checking Stripe dependency versions or API key configuration, but the main diagnostic/research loop is complete.