diff --git a/litellm/proxy/openapi_registry.json b/litellm/proxy/openapi_registry.json index ff59f13ac14..fe83e71de5f 100644 --- a/litellm/proxy/openapi_registry.json +++ b/litellm/proxy/openapi_registry.json @@ -187,9 +187,9 @@ { "name": "shopify", "title": "Shopify", - "description": "Products, orders, customers, and store management (requires your store subdomain)", + "description": "Products, orders, customers, and store management via Shopify Admin REST API (requires your store subdomain)", "icon_url": "https://cdn.simpleicons.org/shopify", - "spec_url": "https://raw.githubusercontent.com/Shopify/shopify-api-specs/main/admin/rest/2024-01/openapi.json", + "spec_url": "https://raw.githubusercontent.com/Shopify/shopify-api-specs/main/admin/rest/2023-10/openapi.json", "oauth": { "authorization_url": "https://your-store.myshopify.com/admin/oauth/authorize", "token_url": "https://your-store.myshopify.com/admin/oauth/access_token", diff --git a/ui/litellm-dashboard/src/components/mcp_tools/mcp_tool_configuration.tsx b/ui/litellm-dashboard/src/components/mcp_tools/mcp_tool_configuration.tsx index 1a7c58fe10e..b9f4aae6b02 100644 --- a/ui/litellm-dashboard/src/components/mcp_tools/mcp_tool_configuration.tsx +++ b/ui/litellm-dashboard/src/components/mcp_tools/mcp_tool_configuration.tsx @@ -468,42 +468,44 @@ const MCPToolConfiguration: React.FC = ({ )} {restFiltered.length > 0 && ( -
-

- {pinnedFiltered.length > 0 ? "All tools" : "Tools"} -

-
- - + <> +
+

+ {pinnedFiltered.length > 0 ? "All tools" : "Tools"} +

+
+ + +
-
+ {restFiltered.map((tool) => ( + + ))} + )} - {restFiltered.map((tool) => ( - - ))}
)}