StacksFinder

get_workflow_guide

Intelligent workflow guide that recommends the next tool to use based on your goal and context. **Tier**: Free (no API key required) **When to use**: - You're unsure which StacksFinder tool to call next - You want to understand the recommended workflow for your goal - You need help navigating Pro vs Free features **Supported Goals**: - discover: Explore available technologies - setup_api_key: Get Pro features access - get_recommendation: Get a stack recommendation - audit_project: Audit technical debt - migrate_stack: Get migration recommendations - install_mcp: Set up MCP in your IDE - compare_techs: Compare technologies side-by-side - create_blueprint: Create and save a blueprint **Example**: get_workflow_guide({ current_goal: "audit_project", user_tier: "free" })

Remote hoklims/stacksfinder-mcp

Other tools also called get_workflow_guide? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "context": {
      "enum": [
        "chatgpt",
        "claude",
        "cursor",
        "cli"
      ],
      "type": "string",
      "description": "Client context for adapted snippets"
    },
    "user_tier": {
      "enum": [
        "free",
        "pro",
        "unknown"
      ],
      "type": "string",
      "description": "User tier: free, pro, or unknown"
    },
    "current_goal": {
      "enum": [
        "discover",
        "setup_api_key",
        "get_recommendation",
        "audit_project",
        "migrate_stack",
        "install_mcp",
        "compare_techs",
        "create_blueprint"
      ],
      "type": "string",
      "description": "What the user is trying to accomplish"
    },
    "completed_tools": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tools already called in this session"
    },
    "known_constraints": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Constraints like must_use_postgresql, wants_realtime"
    }
  }
}