diff --git a/web/app/components/tools/mcp/index.tsx b/web/app/components/tools/mcp/index.tsx
new file mode 100644
index 0000000000..930be386a1
--- /dev/null
+++ b/web/app/components/tools/mcp/index.tsx
@@ -0,0 +1,20 @@
+'use client'
+import React from 'react'
+
+type Props = {
+ searchText: string
+}
+
+const MCPList = ({
+ searchText,
+}: Props) => {
+ return (
+ <>
+
+ MCP
+ {searchText}
+
+ >
+ )
+}
+export default MCPList
diff --git a/web/app/components/tools/provider-list.tsx b/web/app/components/tools/provider-list.tsx
index d1144d7e69..55c3c2212d 100644
--- a/web/app/components/tools/provider-list.tsx
+++ b/web/app/components/tools/provider-list.tsx
@@ -15,6 +15,7 @@ import WorkflowToolEmpty from '@/app/components/tools/add-tool-modal/empty'
import Card from '@/app/components/plugins/card'
import CardMoreInfo from '@/app/components/plugins/card/card-more-info'
import PluginDetailPanel from '@/app/components/plugins/plugin-detail-panel'
+import MCPList from './mcp'
import { useSelector as useAppContextSelector } from '@/context/app-context'
import { useAllToolProviders } from '@/service/use-tools'
import { useInstalledPluginList, useInvalidateInstalledPluginList } from '@/service/use-plugins'
@@ -31,6 +32,7 @@ const ProviderList = () => {
{ value: 'builtin', text: t('tools.type.builtIn') },
{ value: 'api', text: t('tools.type.custom') },
{ value: 'workflow', text: t('tools.type.workflow') },
+ { value: 'mcp', text: 'MCP' },
]
const [tagFilterValue, setTagFilterValue] = useState([])
const handleTagsChange = (value: string[]) => {
@@ -82,7 +84,9 @@ const ProviderList = () => {
options={options}
/>
-
+ {activeTab !== 'mcp' && (
+
+ )}
{
{!filteredCollectionList.length && activeTab === 'builtin' && (
)}
- {
- enable_marketplace && activeTab === 'builtin' && (
- {
- containerRef.current?.scrollTo({ top: containerRef.current.scrollHeight, behavior: 'smooth' })
- }}
- searchPluginText={keywords}
- filterPluginTags={tagFilterValue}
- />
- )
- }
+ {enable_marketplace && activeTab === 'builtin' && (
+ {
+ containerRef.current?.scrollTo({ top: containerRef.current.scrollHeight, behavior: 'smooth' })
+ }}
+ searchPluginText={keywords}
+ filterPluginTags={tagFilterValue}
+ />
+ )}
+ {activeTab === 'mcp' && (
+
+ )}
{currentProvider && !currentProvider.plugin_id && (