{"release":"PACKRIFT-MCP-TOOL-DISCOVERY-R02","schema":"packrift.mcp_tools.v2","generated_from":"live_worker_tools_registry","server":"Packrift MCP","server_version":"0.2.13","endpoint":"https://mcp.packrift.com/mcp","transport":"streamable_http","auth_required":false,"tool_count":16,"tools":[{"name":"google_retail_ai_finder","description":"Controlled Packrift Google Retail / AI Commerce Search sales test. Uses the imported Retail catalog to find likely buyer matches, returns AI_APPROVE-gated cart-handoff candidates, and records low-cap test attribution. Use this for the Gemini/Retail pilot before normal search_products when testing Google Retail search quality.","input_schema":{"type":"object","properties":{"query":{"type":"string","description":"Buyer search such as 22x20x14 corrugated boxes, kraft bubble mailers, or 2 inch packing tape."},"limit":{"type":"integer","minimum":1,"maximum":10,"default":5,"description":"Maximum returned candidates after AI_APPROVE filtering."},"visitor_id":{"type":"string","description":"Optional stable visitor/session id for Google Retail attribution. A safe test id is generated when omitted."},"approved_only":{"type":"boolean","default":true,"description":"When true, return only products that pass Packrift's AI_APPROVE cart-candidate gate."},"suppress_analytics":{"type":"boolean","description":"Internal QA flag. When true, do not record Retail finder demand events."},"analytics_context":{"type":"object","description":"Internal QA context for synthetic evals."}},"required":["query"]},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"google_retail_ai_finder","arguments":{}}}},{"name":"search_products","description":"Use when the user names a category by keyword (e.g. 'kraft tape', 'bubble mailer', 'starter kit') with no dimensions. For dimension-based fit, prefer find_packaging_for_item. Returns products with price, stock, URL.","input_schema":{"type":"object","properties":{"query":{"type":"string","description":"Free-text search; matches title, vendor, type, tags."},"limit":{"type":"integer","minimum":1,"maximum":50,"default":10}},"required":["query"]},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"search_products","arguments":{}}}},{"name":"get_product","description":"Use after find_packaging_for_item or search_products to pull full detail for a handle: all variants, SKUs, dimensions, weight, stock. Input: handle. Call before building a cart to map qty to the right variant.","input_schema":{"type":"object","properties":{"handle":{"type":"string"}},"required":["handle"]},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"get_product","arguments":{}}}},{"name":"get_pricing","description":"Use to confirm live unit price and line total before cart handoff. Required argument: variant_ids as an array of numeric Shopify variant IDs encoded as strings, for example [\"53475949216112\"]. Optional quantity defaults to 1. Never send variant_ids as numbers. Never cached.","input_schema":{"type":"object","properties":{"variant_ids":{"type":"array","items":{"type":"string"},"minItems":1,"description":"Numeric Shopify variant IDs as strings, not numbers. Example: [\"53475949216112\"]."},"quantity":{"type":"integer","minimum":1,"default":1,"description":"Buyer-selected quantity for line total calculation."},"journey_id":{"type":"string"},"result_set_id":{"type":"string"},"selected_sku":{"type":"string"},"selected_handle":{"type":"string"},"match_type":{"type":"string"}},"required":["variant_ids"]},"agent_call_contract":{"preferred_when":"Agent has one or more approved variant IDs and needs live unit price or line total.","required_arguments":["variant_ids"],"example_arguments":{"variant_ids":["53475949216112"],"quantity":1},"common_mistakes_to_avoid":["variant_ids must be strings, not numbers."]},"json_rpc_call":{"method":"tools/call","params":{"name":"get_pricing","arguments":{}}}},{"name":"check_inventory","description":"Use to confirm stock before recommending a SKU or building a cart. Required argument: variant_ids as an array of numeric Shopify variant IDs encoded as strings, for example [\"53475949216112\"]. Never send variant_ids as numbers. Live, never cached.","input_schema":{"type":"object","properties":{"variant_ids":{"type":"array","items":{"type":"string"},"minItems":1,"description":"Numeric Shopify variant IDs as strings, not numbers. Example: [\"53475949216112\"]."},"journey_id":{"type":"string"},"result_set_id":{"type":"string"},"selected_sku":{"type":"string"},"selected_handle":{"type":"string"},"match_type":{"type":"string"}},"required":["variant_ids"]},"agent_call_contract":{"preferred_when":"Agent has one or more approved variant IDs and needs live stock confirmation.","required_arguments":["variant_ids"],"example_arguments":{"variant_ids":["53475949216112"]},"common_mistakes_to_avoid":["variant_ids must be strings, not numbers."]},"json_rpc_call":{"method":"tools/call","params":{"name":"check_inventory","arguments":{}}}},{"name":"find_packaging_for_item","description":"Use when the buyer has item dimensions and needs a fitting box or mailer. Required arguments are item_length_in, item_width_in, item_depth_in, item_weight_lb, and use_case. Canonical use_case values are mailer|box|fragile|apparel|ecommerce; free text such as 'shipping ceramic mugs' is accepted and mapped to the closest canonical context. Returns up to 5 AI_APPROVE SKUs ranked by fit with price, stock, URL, and cart-continuity fields.","input_schema":{"type":"object","properties":{"item_length_in":{"type":"number","minimum":0.1,"description":"Item length in inches."},"item_width_in":{"type":"number","minimum":0.1,"description":"Item width in inches."},"item_depth_in":{"type":"number","minimum":0.1,"description":"Item depth/height in inches."},"item_weight_lb":{"type":"number","minimum":0,"description":"Packed item weight in pounds; use 0 when unknown."},"use_case":{"type":"string","description":"Packaging context that guides fit ranking. Canonical values: mailer, box, fragile, apparel, ecommerce. Free text (e.g. 'shipping ceramic mugs') is accepted and mapped to the closest canonical context."}},"required":["item_length_in","item_width_in","item_depth_in","item_weight_lb","use_case"]},"agent_call_contract":{"preferred_when":"Buyer has item dimensions and needs a fitting box or mailer.","required_arguments":["item_length_in","item_width_in","item_depth_in","item_weight_lb","use_case"],"example_arguments":{"item_length_in":11,"item_width_in":8.5,"item_depth_in":1,"item_weight_lb":2,"use_case":"mailer"},"common_mistakes_to_avoid":["Do not send a single dims string; use the exact item_* numeric fields."]},"json_rpc_call":{"method":"tools/call","params":{"name":"find_packaging_for_item","arguments":{}}}},{"name":"get_shipping_estimate","description":"Use when the buyer asks shipping cost for selected AI_APPROVE variants. Required arguments: destination_postal_code, country (US|CA), and items with variant_id as a numeric Shopify variant ID string plus qty, for example {\"variant_id\":\"53475949216112\",\"qty\":1}. Never send variant_id as a number.","input_schema":{"type":"object","properties":{"destination_postal_code":{"type":"string"},"country":{"type":"string","enum":["US","CA"]},"items":{"type":"array","minItems":1,"items":{"type":"object","properties":{"variant_id":{"type":"string","description":"Numeric Shopify variant ID as a string, not a number. Example: \"53475949216112\"."},"qty":{"type":"integer","minimum":1,"description":"Quantity for this line item. The alias key quantity is also accepted."}},"required":["variant_id","qty"]}},"journey_id":{"type":"string"},"result_set_id":{"type":"string"},"selected_sku":{"type":"string"},"selected_handle":{"type":"string"},"match_type":{"type":"string"}},"required":["destination_postal_code","country","items"]},"agent_call_contract":{"preferred_when":"Buyer has selected approved variants and asks shipping cost to a US or CA postal code.","required_arguments":["destination_postal_code","country","items"],"example_arguments":{"destination_postal_code":"10001","country":"US","items":[{"variant_id":"53475949216112","qty":1}]},"common_mistakes_to_avoid":["items[].variant_id must be a string, not a number."]},"json_rpc_call":{"method":"tools/call","params":{"name":"get_shipping_estimate","arguments":{}}}},{"name":"get_cart_handoff_candidates","description":"Returns priority AI-approved Packrift SKUs that are ready for MCP cart handoff exploration, including create_cart_url arguments, SKU records, measured product/reorder/quote links, and the required live-confirmation sequence.","input_schema":{"type":"object","properties":{"limit":{"type":"integer","minimum":1,"maximum":50,"default":10},"family":{"type":"string","enum":["boxes","mailers","labels","tape","poly_bags","stretch_film","strapping","tags","void_fill","packing_list_envelopes"],"description":"Optional product family filter."},"sku":{"type":"string","description":"Optional exact Packrift SKU filter."}}},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"get_cart_handoff_candidates","arguments":{}}}},{"name":"create_cart_url","description":"Final checkout handoff after live product, price, inventory, and buyer confirmation. For most agents, use exact AI_APPROVE sku plus quantity. Use items only when you already have variant IDs as strings. Returns a measured Packrift /r/cart URL with MCP attribution and a Shopify cart permalink; it does not place an order.","input_schema":{"type":"object","properties":{"sku":{"type":"string","description":"Shortcut for exact Packrift SKUs such as 1066, MFL1295, or LL251WR. When provided without items, the approved variant is resolved automatically."},"quantity":{"type":"integer","minimum":1,"default":1,"description":"Buyer-confirmed quantity to use with sku shortcut. Ignored when items is provided."},"items":{"type":"array","description":"Advanced path for agents that already have approved variant IDs. Most buyers should use sku plus quantity instead.","minItems":1,"items":{"type":"object","properties":{"variant_id":{"type":"string","description":"Numeric Shopify variant ID as a string, not a number. Example: \"53475949216112\"."},"qty":{"type":"integer","minimum":1,"description":"Buyer-confirmed quantity for this line item. The alias key quantity is also accepted."}},"required":["variant_id","qty"]}},"discount_code":{"type":"string"},"ref":{"type":"string","default":"mcp"},"source_context":{"type":"string","description":"Optional short context for analytics, such as exact_match, reorder, quote_followup, or ai_agent."},"journey_id":{"type":"string"},"packrift_ai_id":{"type":"string"},"ai_commerce_id":{"type":"string"},"result_set_id":{"type":"string"},"selected_sku":{"type":"string","description":"Buyer-confirmed SKU. When provided, it must resolve to the same AI_APPROVE item as the cart variant."},"selected_handle":{"type":"string","description":"Buyer-confirmed product handle. When provided, it must resolve to the same AI_APPROVE item as the cart variant."},"match_type":{"type":"string"},"reorder_source":{"type":"string"},"utm_term":{"type":"string"},"mcp_source_context":{"type":"string","description":"Optional source slug for source-aware MCP installs, such as cline_mcp_marketplace or mcp_so."},"packrift_mcp_source":{"type":"string"},"mcp_source":{"type":"string"},"source_slug":{"type":"string"},"mcp_install_target":{"type":"string","description":"Optional install target for source-aware MCP installs, such as cline, codex, or generic_streamable_http."},"packrift_mcp_target":{"type":"string"},"mcp_target":{"type":"string"},"suppress_analytics":{"type":"boolean","description":"Internal QA flag. When true, do not record an AI-sales cart event."},"analytics_context":{"type":"object","description":"Internal QA context for synthetic evals."}},"anyOf":[{"required":["items"]},{"required":["sku"]}]},"agent_call_contract":{"preferred_when":"Final fallback cart handoff after live checks and buyer confirmation.","required_arguments":["sku or items"],"preferred_example_arguments":{"sku":"1066","quantity":1},"advanced_example_arguments":{"items":[{"variant_id":"53475949216112","qty":1}]},"common_mistakes_to_avoid":["Prefer sku plus quantity unless you already have approved variant IDs.","items[].variant_id must be a string, not a number.","This creates a measured cart URL only; it does not place an order."]},"json_rpc_call":{"method":"tools/call","params":{"name":"create_cart_url","arguments":{}}}},{"name":"prepare_purchase_handoff","description":"Preferred exact-SKU purchase prep for agents. Call first with sku, quantity, and buyer_confirmed=false to confirm AI_APPROVE product, live price, and live inventory. Call again with buyer_confirmed=true only after buyer approval; then it returns a measured source-preserving MCP /r/cart URL. It does not place an order.","input_schema":{"type":"object","properties":{"sku":{"type":"string","description":"Exact Packrift SKU such as 1066, MFL1295, or LL251WR."},"quantity":{"type":"integer","minimum":1,"default":1,"description":"Buyer-selected quantity. Defaults to 1."},"buyer_confirmed":{"type":"boolean","default":false,"description":"Set true only after the buyer confirms the exact SKU and quantity. Without this, no cart URL is created."},"source_context":{"type":"string","description":"Optional analytics context, such as agent_quick_start, exact_sku_reorder, or browse_sh_first_cart_run."},"mcp_source_context":{"type":"string","description":"Optional source slug for source-aware MCP installs, such as cline_mcp_marketplace or mcp_so."},"packrift_mcp_source":{"type":"string"},"mcp_source":{"type":"string"},"source_slug":{"type":"string"},"mcp_install_target":{"type":"string","description":"Optional install target for source-aware MCP installs, such as cline, codex, or generic_streamable_http."},"packrift_mcp_target":{"type":"string"},"mcp_target":{"type":"string"},"journey_id":{"type":"string"},"result_set_id":{"type":"string"},"suppress_analytics":{"type":"boolean","description":"Internal QA flag. When true, do not record downstream cart analytics."},"analytics_context":{"type":"object","description":"Internal QA context for synthetic evals."}},"required":["sku"]},"agent_call_contract":{"preferred_when":"Fastest path when the buyer already has an exact Packrift SKU.","required_arguments":["sku"],"example_arguments_before_buyer_approval":{"sku":"1066","quantity":1,"buyer_confirmed":false},"example_arguments_after_buyer_approval":{"sku":"1066","quantity":1,"buyer_confirmed":true},"common_mistakes_to_avoid":["Do not set buyer_confirmed=true until the buyer approves the exact SKU and quantity."]},"json_rpc_call":{"method":"tools/call","params":{"name":"prepare_purchase_handoff","arguments":{}}}},{"name":"compare_alternatives","description":"Exploration tool for buyers comparing a packaging spec, competitor-style item, or Uline-style request against Packrift AI_APPROVE products. Returns ranked Packrift candidates plus a plain-language comparison summary.","input_schema":{"type":"object","properties":{"requested_spec":{"type":"string","description":"Packaging request, competitor-style spec, or exact dimensions/material/count to compare."},"family":{"type":"string","enum":["boxes","mailers","labels","tape","poly_bags","stretch_film","strapping","tags","void_fill","packing_list_envelopes"]},"competitor_reference":{"type":"string","description":"Optional competitor or source name, used only as context; Packrift does not claim live competitor price or inventory."},"limit":{"type":"integer","minimum":1,"maximum":8,"default":5}},"required":["requested_spec"]},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"compare_alternatives","arguments":{}}}},{"name":"pack_calculator","description":"Exploration tool for item dimensions and weight. Calculates required inside dimensions, ranks Packrift box/mailer candidates, and gives void-fill guidance before live price/inventory confirmation.","input_schema":{"type":"object","properties":{"item_length_in":{"type":"number","minimum":0.1},"item_width_in":{"type":"number","minimum":0.1},"item_depth_in":{"type":"number","minimum":0.1},"item_weight_lb":{"type":"number","minimum":0,"default":0},"padding_in":{"type":"number","minimum":0,"maximum":6,"default":0.5},"use_case":{"type":"string","enum":["auto","box","mailer","fragile","apparel","ecommerce"],"default":"auto"},"limit":{"type":"integer","minimum":1,"maximum":8,"default":5}},"required":["item_length_in","item_width_in","item_depth_in"]},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"pack_calculator","arguments":{}}}},{"name":"inventory_status","description":"Live inventory exploration for one or more AI_APPROVE variants. Returns Shopify total quantity, available-for-sale state, location-level BOX warehouse quantities where available, and a plain-language fulfillment summary.","input_schema":{"type":"object","properties":{"variant_ids":{"type":"array","items":{"type":"string"},"minItems":1},"sku":{"type":"string","description":"Packrift SKU such as 1066."},"handle":{"type":"string","description":"Packrift product handle."},"quantity":{"type":"integer","minimum":1,"default":1}}},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"inventory_status","arguments":{}}}},{"name":"get_reorder_link","description":"Return the Packrift reorder URL, product URL, and copy-procurement-spec text for one AI_APPROVE SKU or handle. Use for repeat-buy and procurement handoff workflows.","input_schema":{"type":"object","properties":{"sku":{"type":"string","description":"Packrift SKU such as 1066, MFL1295, or LL251WR."},"handle":{"type":"string","description":"Packrift product handle if SKU is unknown."},"source_context":{"type":"string","description":"Optional analytics context, e.g. ai_agent_reorder or mcp_reorder."},"suppress_analytics":{"type":"boolean","description":"Internal QA flag. When true, do not record an AI-sales reorder event."},"analytics_context":{"type":"object","description":"Internal QA context for synthetic evals."}}},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"get_reorder_link","arguments":{}}}},{"name":"get_bulk_quote_link","description":"Return a tracked Packrift bulk quote URL for an exact requested packaging spec or SKU. Use when there is no exact match or the buyer needs bulk/procurement review.","input_schema":{"type":"object","properties":{"requested_spec":{"type":"string","description":"Exact unavailable or bulk quote packaging spec."},"sku":{"type":"string","description":"Optional Packrift SKU to prefill if the quote relates to a known product."},"family":{"type":"string","description":"Optional product family such as boxes, labels, mailers, tape, or poly_bags."},"quantity":{"type":"string","description":"Optional buyer quantity. Numbers are accepted and coerced to string."},"reason":{"type":"string","description":"Optional reason for quote handoff."},"suppress_analytics":{"type":"boolean","description":"Internal QA flag. When true, do not record an AI-sales quote event."},"analytics_context":{"type":"object","description":"Internal QA context for synthetic evals."}},"required":["requested_spec"]},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"get_bulk_quote_link","arguments":{}}}},{"name":"explain_no_exact_match","description":"Explain why Packrift should not present a nearby product as an exact match, then return safe next actions and a tracked bulk quote URL.","input_schema":{"type":"object","properties":{"requested_spec":{"type":"string","description":"The buyer's exact requested packaging spec."},"family":{"type":"string","description":"Optional product family."},"missing_or_mismatched_fields":{"type":"array","items":{"type":"string"},"description":"Required fields that were unavailable or different, such as length, material, color, or pack_count."},"reason":{"type":"string","description":"Optional short explanation from the caller."},"suppress_analytics":{"type":"boolean","description":"Internal QA flag. When true, do not record an AI-sales no-match event."},"analytics_context":{"type":"object","description":"Internal QA context for synthetic evals."}},"required":["requested_spec"]},"agent_call_contract":null,"json_rpc_call":{"method":"tools/call","params":{"name":"explain_no_exact_match","arguments":{}}}}],"required_current_tools":["google_retail_ai_finder","search_products","get_product","get_pricing","check_inventory","find_packaging_for_item","get_shipping_estimate","get_cart_handoff_candidates","create_cart_url","prepare_purchase_handoff","compare_alternatives","pack_calculator","inventory_status","get_reorder_link","get_bulk_quote_link","explain_no_exact_match"],"recommended_call_sequence":["search_products","get_product","get_pricing","check_inventory","get_cart_handoff_candidates","create_cart_url"],"buyer_flows":[{"id":"exact_spec_search","tools":["search_products","get_product","get_pricing","check_inventory"],"outcome":"Return an exact AI_APPROVE product only when dimensions and required attributes match."},{"id":"fit_then_buy","tools":["find_packaging_for_item","pack_calculator","get_product","get_pricing","check_inventory","create_cart_url"],"outcome":"Find a packaging fit, confirm live facts, then hand off a measured cart URL after buyer selection."},{"id":"alternatives_comparison","tools":["compare_alternatives","inventory_status","get_bulk_quote_link"],"outcome":"Compare exact eligible Packrift options and route unresolved specs to quote recovery."},{"id":"purchase_handoff","tools":["get_cart_handoff_candidates","prepare_purchase_handoff","create_cart_url"],"outcome":"Create a Packrift MCP /r/cart URL with source, journey, and UTM attribution; no order is placed by the tool."}],"guardrails":["Use only AI_APPROVE Packrift catalog items for exact product recommendations.","Do not present nearby dimensions, material, color, closure, printer type, adhesive, pack count, or SKU as an exact match.","Confirm live price and live inventory before cart handoff.","Use create_cart_url only after the buyer selects the exact SKU and quantity.","If no exact safe match exists, call explain_no_exact_match or get_bulk_quote_link instead of forcing a substitute."],"conversion_urls":{"start":"https://mcp.packrift.com/start","manifest":"https://mcp.packrift.com/manifest","resources":"https://mcp.packrift.com/resources","server_card":"https://mcp.packrift.com/.well-known/mcp/server-card.json","agent_web_manifest":"https://mcp.packrift.com/.well-known/agent.json","root_agent_web_manifest":"https://mcp.packrift.com/agent.json","capability_card":"https://mcp.packrift.com/.well-known/capability-card.json","openapi_json":"https://mcp.packrift.com/openapi.json","well_known_openapi_json":"https://mcp.packrift.com/.well-known/openapi.json","ai_plugin_json":"https://mcp.packrift.com/ai-plugin.json","well_known_ai_plugin_json":"https://mcp.packrift.com/.well-known/ai-plugin.json","tool_discovery_json":"https://mcp.packrift.com/ai/mcp-tools.json","tool_discovery_markdown":"https://mcp.packrift.com/ai/spec-finder-tools.md","client_config":"https://mcp.packrift.com/ai/mcp-client-config.json","source_activation_sitemap":"https://mcp.packrift.com/ai/mcp-source-activation-sitemap.xml","source_activation_queue":"https://mcp.packrift.com/ai/mcp-source-activation-queue.json","source_activation_queue_html":"https://mcp.packrift.com/ai/mcp-source-activation-queue.html","visitor_growth_queue":"https://mcp.packrift.com/ai/mcp-visitor-growth-queue.json","visitor_growth_queue_html":"https://mcp.packrift.com/ai/mcp-visitor-growth-queue.html","visitor_growth_tasks_jsonl":"https://mcp.packrift.com/ai/mcp-visitor-growth-tasks.jsonl","visitor_growth_tasks_csv":"https://mcp.packrift.com/ai/mcp-visitor-growth-tasks.csv","revenue_conversion_queue":"https://mcp.packrift.com/ai/mcp-revenue-conversion-queue.json","revenue_conversion_queue_html":"https://mcp.packrift.com/ai/mcp-revenue-conversion-queue.html","buyer_order_handoffs":"https://mcp.packrift.com/ai/mcp-buyer-order-handoffs.json","buyer_order_handoffs_html":"https://mcp.packrift.com/ai/mcp-buyer-order-handoffs.html","buyer_order_handoffs_tasks_jsonl":"https://mcp.packrift.com/ai/mcp-buyer-order-handoffs-tasks.jsonl","buyer_order_handoffs_tasks_csv":"https://mcp.packrift.com/ai/mcp-buyer-order-handoffs-tasks.csv","agent_host_rollout":"https://mcp.packrift.com/ai/mcp-agent-host-rollout.json","agent_host_rollout_html":"https://mcp.packrift.com/ai/mcp-agent-host-rollout.html","agent_host_rollout_tasks_jsonl":"https://mcp.packrift.com/ai/mcp-agent-host-rollout-tasks.jsonl","agent_host_rollout_tasks_csv":"https://mcp.packrift.com/ai/mcp-agent-host-rollout-tasks.csv","activation_wave":"https://mcp.packrift.com/ai/mcp-activation-wave.json","activation_wave_html":"https://mcp.packrift.com/ai/mcp-activation-wave.html","activation_wave_tasks_jsonl":"https://mcp.packrift.com/ai/mcp-activation-wave-tasks.jsonl","activation_wave_tasks_csv":"https://mcp.packrift.com/ai/mcp-activation-wave-tasks.csv","external_activation_brief":"https://mcp.packrift.com/ai/mcp-external-activation-brief.json","external_activation_brief_html":"https://mcp.packrift.com/ai/mcp-external-activation-brief.html","external_activation_brief_tasks_jsonl":"https://mcp.packrift.com/ai/mcp-external-activation-brief-tasks.jsonl","external_activation_brief_tasks_csv":"https://mcp.packrift.com/ai/mcp-external-activation-brief-tasks.csv","external_activation_brief_tasks_compact_jsonl":"https://mcp.packrift.com/ai/mcp-external-activation-brief-tasks.jsonl?compact=1","external_activation_brief_tasks_compact_csv":"https://mcp.packrift.com/ai/mcp-external-activation-brief-tasks.csv?compact=1","automation_workflows":"https://mcp.packrift.com/ai/mcp-automation-workflows.json","automation_workflows_html":"https://mcp.packrift.com/ai/mcp-automation-workflows.html","n8n_workflow_import":"https://mcp.packrift.com/ai/mcp-n8n-workflow.json","eval_pack":"https://mcp.packrift.com/ai/mcp-eval-pack.json","eval_pack_template":"https://mcp.packrift.com/ai/mcp-eval-pack.json?source={source}","directory_update_card_template":"https://mcp.packrift.com/ai/mcp-directory-update/{source}.json","tracked_start_template":"https://mcp.packrift.com/r/start/{source}","tracked_install_template":"https://mcp.packrift.com/r/install/{source}/{target}","tracked_run_template":"https://mcp.packrift.com/r/run/{source}/{target}","tracked_run_generic":"https://mcp.packrift.com/r/run/generic/generic_streamable_http?utm_source=generic&utm_medium=first_run_action&utm_campaign=packrift_mcp_activation&utm_content=generic_streamable_http","reviewer_activation_template":"https://mcp.packrift.com/r/activate/{source}","reviewer_activation_html_template":"https://mcp.packrift.com/r/activate/{source}?format=html","reviewer_activation_shell_template":"https://mcp.packrift.com/r/activate/{source}?format=sh","reviewer_activation_shell_generic":"https://mcp.packrift.com/r/activate/generic?format=sh","cart_handoff_candidates":"https://mcp.packrift.com/ai/mcp-cart-handoff-candidates.json","measured_handoffs":"https://mcp.packrift.com/ai/measured-handoffs.json","usage_snapshot":"https://mcp.packrift.com/ai/mcp-usage-snapshot.json","funnel_snapshot":"https://mcp.packrift.com/ai/mcp-funnel-snapshot.json","ga4_funnel_proof":"https://mcp.packrift.com/ai/mcp-ga4-funnel-proof.json"},"source_activation":{"source_count":75,"sources":["official_registry","mcpservers_org","glama_connector","glama_server_listing","mcp_directory","anthropic_connectors_directory","smithery","cline_mcp_marketplace","mcp_so","punkpeye_awesome_mcp","browse_sh","mcpmarket_com","cursor_directory","mcpcentral","mcpfinder","pulsemcp_packrift","mcpskills","agentndx","mcpbench","chiark","mcp_marketplace_io","mcplist_ai","mcphubz","findmcp_dev","mcplane","mcpsolutions_dev","gpmcp","theresamcpforthat","mcpserverfinder","mcpserver_cc","mcpserverspot","docker_mcp_catalog","generic","windsurf_direct","codex_remote_mcp","claude_remote_mcp","openai_chatgpt","curated_ucp_storefront","stack412_style_storefront","plugthatshop_style_embed","open_scout_shopping_agent","upsonic_ucp_agent_framework","agorio_shopping_agent_sdk","langchain_agent","llamaindex_agent","n8n_automation","zapier_automation","mcp_inspector","github_copilot","gemini_remote_mcp","browser_agent_bridge","vercel_agent","crewai_agent","autogen_agent","semantic_kernel_agent","pydantic_ai_agent","mastra_agent","dify_agent","flowise_agent","langflow_agent","open_webui_agent","make_automation","pipedream_automation","replit_agent","devin_agent","goose_agent","sourcegraph_cody","aider_agent","msty_agent","lmstudio_agent","ollama_agent","anythingllm_agent","jan_agent","lovable_agent","manus_agent"],"source_aware_endpoint_template":"https://mcp.packrift.com/mcp?packrift_mcp_source={source}&packrift_mcp_target={target}","generic_source_aware_endpoint":"https://mcp.packrift.com/mcp?packrift_mcp_source=generic&packrift_mcp_target=generic_streamable_http","sitemap_url_count":2083},"tracked_events":["mcp_tool_call","mcp_cart_landing","mcp_start_click","mcp_install_intent","mcp_first_run_intent","mcp_first_run_execution","ai_corpus_click","purchase"]}