@lobehub/chat 1.96.20 → 1.97.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +50 -0
- package/README.md +90 -32
- package/README.zh-CN.md +90 -34
- package/apps/desktop/package.json +1 -1
- package/apps/desktop/src/main/core/Browser.ts +2 -1
- package/apps/desktop/src/main/utils/next-electron-rsc.ts +15 -8
- package/changelog/v1.json +18 -0
- package/docs/usage/features/desktop.mdx +53 -0
- package/docs/usage/features/desktop.zh-CN.mdx +49 -0
- package/docs/usage/features/mcp-market.mdx +26 -0
- package/docs/usage/features/mcp-market.zh-CN.mdx +22 -0
- package/docs/usage/features/mcp.mdx +58 -0
- package/docs/usage/features/mcp.zh-CN.mdx +54 -0
- package/docs/usage/features/search.mdx +56 -0
- package/docs/usage/features/search.zh-CN.mdx +52 -0
- package/locales/ar/discover.json +452 -12
- package/locales/ar/metadata.json +4 -0
- package/locales/ar/plugin.json +89 -2
- package/locales/ar/setting.json +1 -0
- package/locales/bg-BG/discover.json +452 -12
- package/locales/bg-BG/metadata.json +4 -0
- package/locales/bg-BG/plugin.json +89 -2
- package/locales/bg-BG/setting.json +1 -0
- package/locales/de-DE/discover.json +452 -12
- package/locales/de-DE/metadata.json +4 -0
- package/locales/de-DE/plugin.json +89 -2
- package/locales/de-DE/setting.json +1 -0
- package/locales/en-US/discover.json +452 -12
- package/locales/en-US/metadata.json +4 -0
- package/locales/en-US/plugin.json +89 -2
- package/locales/en-US/setting.json +1 -0
- package/locales/es-ES/discover.json +452 -12
- package/locales/es-ES/metadata.json +4 -0
- package/locales/es-ES/plugin.json +89 -2
- package/locales/es-ES/setting.json +1 -0
- package/locales/fa-IR/discover.json +452 -12
- package/locales/fa-IR/metadata.json +4 -0
- package/locales/fa-IR/plugin.json +89 -2
- package/locales/fa-IR/setting.json +1 -0
- package/locales/fr-FR/discover.json +452 -12
- package/locales/fr-FR/metadata.json +4 -0
- package/locales/fr-FR/plugin.json +89 -2
- package/locales/fr-FR/setting.json +1 -0
- package/locales/it-IT/discover.json +452 -12
- package/locales/it-IT/metadata.json +4 -0
- package/locales/it-IT/plugin.json +89 -2
- package/locales/it-IT/setting.json +1 -0
- package/locales/ja-JP/discover.json +452 -12
- package/locales/ja-JP/metadata.json +4 -0
- package/locales/ja-JP/plugin.json +89 -2
- package/locales/ja-JP/setting.json +1 -0
- package/locales/ko-KR/discover.json +452 -12
- package/locales/ko-KR/metadata.json +4 -0
- package/locales/ko-KR/plugin.json +89 -2
- package/locales/ko-KR/setting.json +1 -0
- package/locales/nl-NL/discover.json +452 -12
- package/locales/nl-NL/metadata.json +4 -0
- package/locales/nl-NL/plugin.json +89 -2
- package/locales/nl-NL/setting.json +1 -0
- package/locales/pl-PL/discover.json +452 -12
- package/locales/pl-PL/metadata.json +4 -0
- package/locales/pl-PL/plugin.json +89 -2
- package/locales/pl-PL/setting.json +1 -0
- package/locales/pt-BR/discover.json +452 -12
- package/locales/pt-BR/metadata.json +4 -0
- package/locales/pt-BR/plugin.json +89 -2
- package/locales/pt-BR/setting.json +1 -0
- package/locales/ru-RU/discover.json +452 -12
- package/locales/ru-RU/metadata.json +4 -0
- package/locales/ru-RU/plugin.json +89 -2
- package/locales/ru-RU/setting.json +1 -0
- package/locales/tr-TR/discover.json +452 -12
- package/locales/tr-TR/metadata.json +4 -0
- package/locales/tr-TR/plugin.json +89 -2
- package/locales/tr-TR/setting.json +1 -0
- package/locales/vi-VN/discover.json +452 -12
- package/locales/vi-VN/metadata.json +4 -0
- package/locales/vi-VN/plugin.json +89 -2
- package/locales/vi-VN/setting.json +1 -0
- package/locales/zh-CN/discover.json +452 -12
- package/locales/zh-CN/metadata.json +8 -4
- package/locales/zh-CN/plugin.json +89 -2
- package/locales/zh-CN/setting.json +1 -0
- package/locales/zh-TW/discover.json +452 -12
- package/locales/zh-TW/metadata.json +4 -0
- package/locales/zh-TW/plugin.json +89 -2
- package/locales/zh-TW/setting.json +1 -0
- package/next.config.ts +70 -19
- package/package.json +7 -3
- package/scripts/buildSitemapIndex/index.ts +9 -4
- package/src/app/(backend)/trpc/async/[trpc]/route.ts +4 -2
- package/src/app/(backend)/trpc/lambda/[trpc]/route.ts +5 -0
- package/src/app/[variants]/(main)/_layout/Mobile/index.tsx +5 -4
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/InboxWelcome/AgentsSuggest.tsx +31 -45
- package/src/app/[variants]/(main)/discover/(detail)/_layout/Desktop.tsx +8 -6
- package/src/app/[variants]/(main)/discover/(detail)/_layout/Mobile/Header.tsx +3 -2
- package/src/app/[variants]/(main)/discover/(detail)/_layout/Mobile/index.tsx +5 -1
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/Client.tsx +40 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/DetailProvider.tsx +19 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Block.tsx +27 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Knowledge.tsx +33 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/KnowledgeItem.tsx +58 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/PluginItem.tsx +68 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Plugins.tsx +32 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/index.tsx +37 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Nav.tsx +121 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/TagList.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/index.tsx +96 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Related/index.tsx +31 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/TagList.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/index.tsx +54 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/index.tsx +49 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Header.tsx +176 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/{[slug]/features → [...slugs]/features/Sidebar/ActionButton}/AddAgent.tsx +22 -21
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/index.tsx +31 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Related/Item.tsx +57 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Related/index.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Summary/index.tsx +38 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/TocList/index.tsx +77 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/index.tsx +46 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/loading.tsx +48 -0
- package/src/app/[variants]/(main)/discover/(detail)/{plugin/[slug] → assistant/[...slugs]}/page.tsx +39 -42
- package/src/app/[variants]/(main)/discover/(detail)/features/Breadcrumb.tsx +56 -0
- package/src/app/[variants]/(main)/discover/(detail)/features/DetailLayout.tsx +0 -1
- package/src/app/[variants]/(main)/discover/(detail)/features/MakedownRender.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(detail)/features/ShareButton.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(detail)/features/Toc/Heading.tsx +108 -0
- package/src/app/[variants]/(main)/discover/(detail)/features/Toc/index.tsx +92 -0
- package/src/app/[variants]/(main)/discover/(detail)/features/Toc/useToc.tsx +66 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/Client.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Related/index.tsx +32 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Versions/index.tsx +76 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/index.tsx +59 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/ActionButton/index.tsx +84 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/ConnectionTypeAlert.tsx +35 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/Related/Item.tsx +57 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/Related/index.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/ServerConfig.tsx +36 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/TocList/index.tsx +98 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/index.tsx +58 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/page.tsx +103 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/Client.tsx +40 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/DetailProvider.tsx +19 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Nav.tsx +90 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Overview/ProviderList/index.tsx +179 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Overview/index.tsx +22 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/{ParameterList → Details/Parameter}/ParameterItem.tsx +1 -1
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/{ParameterList → Details/Parameter}/index.tsx +11 -11
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Related/index.tsx +31 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/index.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Header.tsx +84 -59
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/ChatWithModel.tsx +92 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/index.tsx +32 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/Related/Item.tsx +60 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/Related/index.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/RelatedProviders/Item.tsx +60 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/RelatedProviders/index.tsx +34 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/index.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/page.tsx +22 -45
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/Client.tsx +40 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/DetailProvider.tsx +19 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Guide/index.tsx +25 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Nav.tsx +99 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Overview/ModelList/index.tsx +142 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Overview/index.tsx +23 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Related/index.tsx +22 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/index.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Header.tsx +99 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/{[slug]/features → [...slugs]/features/Sidebar/ActionButton}/ProviderConfig.tsx +9 -14
- package/src/app/[variants]/(main)/discover/(detail)/provider/{[slug]/features/Actions.tsx → [...slugs]/features/Sidebar/ActionButton/index.tsx} +14 -18
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/Related/Item.tsx +60 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/Related/index.tsx +34 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/RelatedModels/Item.tsx +60 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/RelatedModels/index.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/index.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/page.tsx +103 -0
- package/src/app/[variants]/(main)/discover/(list)/(home)/Client.tsx +24 -21
- package/src/app/[variants]/(main)/discover/(list)/(home)/loading.tsx +1 -1
- package/src/app/[variants]/(main)/discover/(list)/(home)/page.tsx +13 -38
- package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/Nav.tsx +15 -8
- package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/Header.tsx +1 -1
- package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/Nav.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/assistant/Client.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/index.tsx +84 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/useCategory.tsx +112 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/Item.tsx +189 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/TokenTag.tsx +70 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/index.tsx +33 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/page.tsx +46 -0
- package/src/app/[variants]/(main)/discover/(list)/features/Pagination.tsx +67 -0
- package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +184 -0
- package/src/app/[variants]/(main)/discover/(list)/mcp/Client.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/Category/index.tsx +83 -0
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/ConnectionTypeTag.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/Item.tsx +225 -0
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/MetaInfo.tsx +33 -0
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/index.tsx +33 -0
- package/src/app/[variants]/(main)/discover/(list)/mcp/page.tsx +46 -0
- package/src/app/[variants]/(main)/discover/(list)/model/Client.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(list)/{models → model}/_layout/Desktop.tsx +1 -7
- package/src/app/[variants]/(main)/discover/(list)/model/features/Category/index.tsx +82 -0
- package/src/app/[variants]/(main)/discover/(list)/model/features/Category/useCategory.tsx +41 -0
- package/src/app/[variants]/(main)/discover/(list)/model/features/List/Item.tsx +190 -0
- package/src/app/[variants]/(main)/discover/(list)/model/features/List/ModelTypeIcon.tsx +39 -0
- package/src/app/[variants]/(main)/discover/(list)/model/features/List/index.tsx +33 -0
- package/src/app/[variants]/(main)/discover/(list)/model/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(list)/model/page.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/Client.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/features/List/Item.tsx +136 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/features/List/index.tsx +33 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/page.tsx +44 -0
- package/src/app/[variants]/(main)/discover/_layout/Desktop/Header.tsx +1 -1
- package/src/app/[variants]/(main)/discover/components/CategoryContainer.tsx +7 -5
- package/src/app/[variants]/(main)/discover/components/CategoryMenu.tsx +28 -30
- package/src/app/[variants]/(main)/discover/components/ListLoading.tsx +56 -46
- package/src/app/[variants]/(main)/discover/components/Statistic.tsx +5 -6
- package/src/app/[variants]/(main)/discover/features/Search.tsx +62 -0
- package/src/app/[variants]/(main)/discover/features/Title.tsx +83 -0
- package/src/app/[variants]/(main)/discover/features/__tests__/calculateScore.test.ts +185 -0
- package/src/app/[variants]/(main)/discover/features/useNav.tsx +32 -12
- package/src/app/robots.tsx +7 -5
- package/src/app/sitemap.tsx +81 -13
- package/src/components/CopyableLabel/index.tsx +37 -0
- package/src/components/Descriptions/index.tsx +119 -0
- package/src/components/InlineTable/index.tsx +69 -0
- package/src/{features/PluginSettings/PluginSettingRender.tsx → components/JSONSchemaConfig/ItemRender.tsx} +3 -3
- package/src/components/MCPDepsIcon/Java.tsx +23 -0
- package/src/components/MCPDepsIcon/PowerShell.tsx +23 -0
- package/src/components/MCPDepsIcon/Terminal.tsx +23 -0
- package/src/components/MCPDepsIcon/UV.tsx +23 -0
- package/src/components/MCPDepsIcon/index.tsx +72 -0
- package/src/components/MCPStdioCommandInput/index.tsx +47 -0
- package/src/components/OfficialIcon.tsx +23 -0
- package/src/components/Plugins/MCPTag.tsx +18 -0
- package/src/components/Plugins/PluginTag.tsx +50 -0
- package/src/components/PublishedTime.tsx +71 -0
- package/src/config/__tests__/app.test.ts +6 -2
- package/src/const/discover.ts +8 -34
- package/src/database/models/message.ts +1 -0
- package/src/database/models/plugin.ts +13 -3
- package/src/database/schemas/relations.ts +44 -0
- package/src/envs/app.ts +1 -1
- package/src/features/AgentSetting/AgentPlugin/index.tsx +2 -2
- package/src/features/ChatInput/ActionBar/Tools/ToolItem.tsx +1 -1
- package/src/features/ChatInput/ActionBar/Tools/useControls.tsx +5 -5
- package/src/features/Conversation/Messages/Assistant/Tool/Inspector/index.tsx +25 -11
- package/src/features/MCP/MCPInstallProgress/InstallError/ErrorDetails.tsx +110 -0
- package/src/features/MCP/MCPInstallProgress/InstallError/index.tsx +51 -0
- package/src/features/MCP/MCPInstallProgress/MCPConfigForm.tsx +151 -0
- package/src/features/MCP/MCPInstallProgress/MCPDependenciesGuide.tsx +217 -0
- package/src/features/MCP/MCPInstallProgress/index.tsx +118 -0
- package/src/features/MCP/Scores.tsx +268 -0
- package/src/features/MCP/calculateScore.ts +324 -0
- package/src/features/MCP/useScoreList.ts +126 -0
- package/src/features/MCP/utils.ts +225 -0
- package/src/features/MCPPluginDetail/CollapseDesc.tsx +44 -0
- package/src/features/MCPPluginDetail/CollapseLayout.tsx +34 -0
- package/src/features/MCPPluginDetail/Deployment/Platform/index.tsx +47 -0
- package/src/features/MCPPluginDetail/Deployment/index.tsx +322 -0
- package/src/features/MCPPluginDetail/DetailProvider.tsx +19 -0
- package/src/features/MCPPluginDetail/Header.tsx +218 -0
- package/src/features/MCPPluginDetail/Nav.tsx +196 -0
- package/src/features/MCPPluginDetail/Overview/TagList.tsx +47 -0
- package/src/features/MCPPluginDetail/Overview/index.tsx +57 -0
- package/src/features/MCPPluginDetail/Schema/Block.tsx +50 -0
- package/src/features/MCPPluginDetail/Schema/Prompts.tsx +125 -0
- package/src/features/MCPPluginDetail/Schema/Resources.tsx +70 -0
- package/src/features/MCPPluginDetail/Schema/Tools.tsx +146 -0
- package/src/features/MCPPluginDetail/Schema/index.tsx +63 -0
- package/src/features/MCPPluginDetail/Schema/style.ts +9 -0
- package/src/features/MCPPluginDetail/Schema/types.ts +4 -0
- package/src/features/MCPPluginDetail/Score/GithubBadge/index.tsx +82 -0
- package/src/features/MCPPluginDetail/Score/ScoreItem.tsx +34 -0
- package/src/features/MCPPluginDetail/Score/ScoreList.tsx +24 -0
- package/src/features/MCPPluginDetail/Score/TotalScore.tsx +289 -0
- package/src/features/MCPPluginDetail/Score/index.tsx +88 -0
- package/src/features/PluginAvatar/index.tsx +1 -1
- package/src/features/PluginDetailModal/Meta.tsx +3 -4
- package/src/features/PluginDevModal/MCPManifestForm/MCPTypeSelect.tsx +3 -4
- package/src/features/PluginDevModal/MCPManifestForm/index.tsx +4 -41
- package/src/features/PluginDevModal/PluginPreview/EmptyState.tsx +5 -7
- package/src/features/PluginDevModal/PluginPreview/index.tsx +6 -6
- package/src/features/PluginSettings/index.tsx +2 -2
- package/src/features/PluginStore/AddPluginButton.tsx +1 -1
- package/src/features/PluginStore/Content.tsx +59 -0
- package/src/features/PluginStore/InstalledList/Detail/CustomPluginEmptyState.tsx +81 -0
- package/src/features/PluginStore/InstalledList/Detail/index.tsx +21 -0
- package/src/features/PluginStore/InstalledList/EditCustomPlugin.tsx +52 -0
- package/src/features/PluginStore/{PluginItem → InstalledList/List/Item}/Action.tsx +33 -13
- package/src/features/PluginStore/InstalledList/List/Item/index.tsx +62 -0
- package/src/features/PluginStore/InstalledList/List/index.tsx +77 -0
- package/src/features/PluginStore/InstalledList/index.tsx +85 -0
- package/src/features/PluginStore/Loading.tsx +2 -2
- package/src/features/PluginStore/McpList/Detail/Loading.tsx +44 -0
- package/src/features/PluginStore/McpList/Detail/Settings/index.tsx +381 -0
- package/src/features/PluginStore/McpList/Detail/index.tsx +71 -0
- package/src/features/PluginStore/McpList/List/Action.tsx +94 -0
- package/src/features/PluginStore/McpList/List/Item.tsx +84 -0
- package/src/features/PluginStore/McpList/List/index.tsx +97 -0
- package/src/features/PluginStore/McpList/index.tsx +54 -0
- package/src/features/PluginStore/PluginList/Detail/DetailProvider.tsx +19 -0
- package/src/features/PluginStore/PluginList/Detail/EmptyState.tsx +58 -0
- package/src/features/PluginStore/PluginList/Detail/Header.tsx +132 -0
- package/src/features/PluginStore/PluginList/Detail/InstallDetail/Nav.tsx +75 -0
- package/src/features/PluginStore/PluginList/Detail/InstallDetail/Settings.tsx +19 -0
- package/src/features/PluginStore/PluginList/Detail/InstallDetail/Tools.tsx +109 -0
- package/src/features/PluginStore/PluginList/Detail/InstallDetail/index.tsx +24 -0
- package/src/features/PluginStore/PluginList/Detail/Loading.tsx +44 -0
- package/src/features/PluginStore/PluginList/Detail/TagList.tsx +37 -0
- package/src/features/PluginStore/PluginList/Detail/index.tsx +39 -0
- package/src/features/PluginStore/PluginList/Detail/useCategory.tsx +76 -0
- package/src/features/PluginStore/PluginList/List/Action.tsx +72 -0
- package/src/features/PluginStore/PluginList/List/Item.tsx +94 -0
- package/src/features/PluginStore/PluginList/List/index.tsx +91 -0
- package/src/features/PluginStore/PluginList/index.tsx +47 -0
- package/src/features/PluginStore/Search/index.tsx +29 -0
- package/src/features/PluginStore/VirtuosoLoading.tsx +16 -0
- package/src/features/PluginStore/index.tsx +7 -31
- package/src/features/PluginTag/index.tsx +6 -4
- package/src/hooks/useInterceptingRoutes.test.ts +6 -0
- package/src/hooks/useMCPCategory.tsx +133 -0
- package/src/hooks/useQuery.ts +8 -0
- package/src/hooks/useQueryRoute.test.ts +7 -0
- package/src/hooks/useQueryRoute.ts +5 -3
- package/src/layout/GlobalProvider/Locale.tsx +2 -1
- package/src/libs/mcp/client.ts +255 -11
- package/src/libs/mcp/types.ts +99 -0
- package/src/libs/trpc/client/desktop.ts +2 -3
- package/src/libs/trpc/lambda/context.ts +36 -5
- package/src/libs/trpc/lambda/index.ts +1 -1
- package/src/libs/trpc/lambda/init.ts +8 -1
- package/src/locales/create.ts +8 -3
- package/src/locales/default/discover.ts +457 -12
- package/src/locales/default/metadata.ts +9 -4
- package/src/locales/default/plugin.ts +89 -1
- package/src/locales/default/setting.ts +1 -0
- package/src/locales/resources.ts +1 -1
- package/src/middleware.ts +13 -3
- package/src/server/ld.ts +4 -3
- package/src/server/modules/AssistantStore/index.test.ts +10 -8
- package/src/server/modules/AssistantStore/index.ts +37 -17
- package/src/server/modules/PluginStore/index.test.ts +1 -1
- package/src/server/modules/PluginStore/index.ts +24 -1
- package/src/server/routers/async/caller.ts +2 -2
- package/src/server/routers/desktop/mcp.ts +36 -2
- package/src/server/routers/edge/index.ts +0 -6
- package/src/server/routers/{edge → lambda}/config/index.ts +1 -1
- package/src/server/routers/lambda/index.ts +4 -0
- package/src/server/routers/lambda/market/index.ts +621 -0
- package/src/server/routers/lambda/plugin.ts +2 -0
- package/src/server/routers/tools/mcp.ts +22 -0
- package/src/server/services/discover/index.test.ts +573 -250
- package/src/server/services/discover/index.ts +1096 -241
- package/src/server/services/mcp/deps/MCPSystemDepsCheckService.ts +238 -0
- package/src/server/services/mcp/deps/checkers/ManualInstallationChecker.ts +20 -0
- package/src/server/services/mcp/deps/checkers/NpmInstallationChecker.ts +51 -0
- package/src/server/services/mcp/deps/checkers/PythonInstallationChecker.ts +69 -0
- package/src/server/services/mcp/deps/index.ts +14 -0
- package/src/server/services/mcp/deps/types.ts +49 -0
- package/src/server/services/mcp/index.ts +251 -33
- package/src/server/sitemap.test.ts +203 -46
- package/src/server/sitemap.ts +159 -52
- package/src/services/__tests__/global.test.ts +4 -7
- package/src/services/__tests__/tool.test.ts +1 -29
- package/src/services/discover.ts +365 -0
- package/src/services/global.ts +3 -3
- package/src/services/mcp.ts +131 -10
- package/src/services/plugin/_deprecated.ts +1 -1
- package/src/services/plugin/type.ts +3 -1
- package/src/services/tool.ts +9 -6
- package/src/store/chat/slices/plugin/action.test.ts +2 -3
- package/src/store/chat/slices/plugin/action.ts +22 -4
- package/src/store/discover/index.ts +1 -0
- package/src/store/discover/slices/assistant/action.ts +73 -0
- package/src/store/discover/slices/assistant/index.ts +1 -0
- package/src/store/discover/slices/mcp/action.ts +70 -0
- package/src/store/discover/slices/mcp/index.ts +1 -0
- package/src/store/discover/slices/model/action.ts +70 -0
- package/src/store/discover/slices/model/index.ts +1 -0
- package/src/store/discover/slices/plugin/action.ts +76 -0
- package/src/store/discover/slices/plugin/index.ts +1 -0
- package/src/store/discover/slices/provider/action.ts +61 -0
- package/src/store/discover/slices/provider/index.ts +1 -0
- package/src/store/discover/store.ts +39 -0
- package/src/store/tool/initialState.ts +8 -2
- package/src/store/tool/selectors/index.ts +2 -1
- package/src/store/tool/selectors/tool.test.ts +3 -1
- package/src/store/tool/selectors/tool.ts +14 -2
- package/src/store/tool/slices/mcpStore/action.ts +496 -0
- package/src/store/tool/slices/mcpStore/initialState.ts +40 -0
- package/src/store/tool/slices/mcpStore/selectors.ts +62 -0
- package/src/store/tool/slices/{store → oldStore}/action.test.ts +24 -19
- package/src/store/tool/slices/oldStore/action.ts +269 -0
- package/src/store/tool/slices/oldStore/index.ts +3 -0
- package/src/store/tool/slices/oldStore/initialState.ts +54 -0
- package/src/store/tool/slices/{store → oldStore}/selectors.test.ts +6 -3
- package/src/store/tool/slices/{store → oldStore}/selectors.ts +18 -5
- package/src/store/tool/slices/plugin/action.test.ts +2 -1
- package/src/store/tool/slices/plugin/action.ts +22 -4
- package/src/store/tool/slices/plugin/selectors.test.ts +12 -4
- package/src/store/tool/slices/plugin/selectors.ts +20 -9
- package/src/store/tool/store.ts +5 -2
- package/src/types/discover/assistants.ts +72 -0
- package/src/types/discover/index.ts +41 -0
- package/src/types/discover/mcp.ts +59 -0
- package/src/types/discover/models.ts +51 -0
- package/src/types/discover/plugins.ts +52 -0
- package/src/types/discover/providers.ts +47 -0
- package/src/types/message/tools.ts +3 -0
- package/src/types/plugins/index.ts +53 -0
- package/src/types/plugins/mcp.ts +188 -0
- package/src/types/plugins/mcpDeps.ts +30 -0
- package/src/types/tool/index.ts +10 -0
- package/src/types/tool/plugin.ts +3 -2
- package/src/types/tool/tool.ts +4 -1
- package/src/utils/client/cookie.ts +5 -2
- package/src/utils/locale.ts +3 -3
- package/src/utils/object.ts +10 -0
- package/src/utils/server/pageProps.ts +9 -0
- package/src/utils/toolCall.ts +5 -1
- package/src/utils/toolManifest.ts +1 -2
- package/vercel.json +1 -1
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/Actions.tsx +0 -35
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/ConversationExample/TopicList.tsx +0 -75
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/ConversationExample/index.tsx +0 -105
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/Header.tsx +0 -115
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/InfoSidebar/SuggestionItem.tsx +0 -62
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/InfoSidebar/ToolItem.tsx +0 -19
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/InfoSidebar/index.tsx +0 -60
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/SystemRole.tsx +0 -35
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/features/Temp.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[slug]/page.tsx +0 -124
- package/src/app/[variants]/(main)/discover/(detail)/loading.tsx +0 -38
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Actions.tsx +0 -40
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/ChatWithModel.tsx +0 -93
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/InfoSidebar/SuggestionItem.tsx +0 -74
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/InfoSidebar/index.tsx +0 -45
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/ProviderList/ProviderItem.tsx +0 -139
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/ProviderList/index.tsx +0 -45
- package/src/app/[variants]/(main)/discover/(detail)/plugin/[slug]/features/Actions.tsx +0 -35
- package/src/app/[variants]/(main)/discover/(detail)/plugin/[slug]/features/Header.tsx +0 -119
- package/src/app/[variants]/(main)/discover/(detail)/plugin/[slug]/features/InfoSidebar/SuggestionItem.tsx +0 -64
- package/src/app/[variants]/(main)/discover/(detail)/plugin/[slug]/features/InfoSidebar/index.tsx +0 -45
- package/src/app/[variants]/(main)/discover/(detail)/plugin/[slug]/features/InstallPlugin.tsx +0 -83
- package/src/app/[variants]/(main)/discover/(detail)/plugin/[slug]/features/ParameterList.tsx +0 -95
- package/src/app/[variants]/(main)/discover/(detail)/plugin/[slug]/features/Schema.tsx +0 -23
- package/src/app/[variants]/(main)/discover/(detail)/provider/[slug]/features/Header.tsx +0 -73
- package/src/app/[variants]/(main)/discover/(detail)/provider/[slug]/features/InfoSidebar/SuggestionItem.tsx +0 -77
- package/src/app/[variants]/(main)/discover/(detail)/provider/[slug]/features/InfoSidebar/index.tsx +0 -45
- package/src/app/[variants]/(main)/discover/(detail)/provider/[slug]/features/ModelList/ModelItem.tsx +0 -152
- package/src/app/[variants]/(main)/discover/(detail)/provider/[slug]/features/ModelList/index.tsx +0 -60
- package/src/app/[variants]/(main)/discover/(detail)/provider/[slug]/page.tsx +0 -126
- package/src/app/[variants]/(main)/discover/(list)/(home)/features/AssistantList.tsx +0 -33
- package/src/app/[variants]/(main)/discover/(list)/(home)/features/ModelList.tsx +0 -19
- package/src/app/[variants]/(main)/discover/(list)/(home)/features/PluginList.tsx +0 -25
- package/src/app/[variants]/(main)/discover/(list)/assistants/[slug]/page.tsx +0 -75
- package/src/app/[variants]/(main)/discover/(list)/assistants/features/Card.tsx +0 -195
- package/src/app/[variants]/(main)/discover/(list)/assistants/features/Category.tsx +0 -48
- package/src/app/[variants]/(main)/discover/(list)/assistants/features/List.tsx +0 -98
- package/src/app/[variants]/(main)/discover/(list)/assistants/features/useCategory.tsx +0 -116
- package/src/app/[variants]/(main)/discover/(list)/assistants/page.tsx +0 -64
- package/src/app/[variants]/(main)/discover/(list)/loading.tsx +0 -39
- package/src/app/[variants]/(main)/discover/(list)/models/[slug]/page.tsx +0 -78
- package/src/app/[variants]/(main)/discover/(list)/models/features/Card.tsx +0 -118
- package/src/app/[variants]/(main)/discover/(list)/models/features/Category.tsx +0 -67
- package/src/app/[variants]/(main)/discover/(list)/models/features/List.tsx +0 -71
- package/src/app/[variants]/(main)/discover/(list)/models/loading.tsx +0 -1
- package/src/app/[variants]/(main)/discover/(list)/models/page.tsx +0 -73
- package/src/app/[variants]/(main)/discover/(list)/plugins/[slug]/page.tsx +0 -75
- package/src/app/[variants]/(main)/discover/(list)/plugins/features/Card.tsx +0 -161
- package/src/app/[variants]/(main)/discover/(list)/plugins/features/Category.tsx +0 -45
- package/src/app/[variants]/(main)/discover/(list)/plugins/features/List.tsx +0 -97
- package/src/app/[variants]/(main)/discover/(list)/plugins/features/useCategory.tsx +0 -80
- package/src/app/[variants]/(main)/discover/(list)/plugins/page.tsx +0 -64
- package/src/app/[variants]/(main)/discover/(list)/providers/features/Card.tsx +0 -119
- package/src/app/[variants]/(main)/discover/(list)/providers/features/List.tsx +0 -67
- package/src/app/[variants]/(main)/discover/(list)/providers/loading.tsx +0 -1
- package/src/app/[variants]/(main)/discover/(list)/providers/page.tsx +0 -64
- package/src/app/[variants]/(main)/discover/features/StoreSearchBar.tsx +0 -87
- package/src/app/[variants]/(main)/discover/loading.tsx +0 -3
- package/src/app/[variants]/(main)/discover/search/_layout/Desktop.tsx +0 -42
- package/src/app/[variants]/(main)/discover/search/_layout/Mobile/Header.tsx +0 -31
- package/src/app/[variants]/(main)/discover/search/_layout/Mobile/Nav.tsx +0 -56
- package/src/app/[variants]/(main)/discover/search/_layout/Mobile/index.tsx +0 -32
- package/src/app/[variants]/(main)/discover/search/features/AssistantsResult.tsx +0 -27
- package/src/app/[variants]/(main)/discover/search/features/Category.tsx +0 -41
- package/src/app/[variants]/(main)/discover/search/features/ModelsResult.tsx +0 -27
- package/src/app/[variants]/(main)/discover/search/features/PluginsResult.tsx +0 -27
- package/src/app/[variants]/(main)/discover/search/features/ProvidersResult.tsx +0 -26
- package/src/app/[variants]/(main)/discover/search/layout.tsx +0 -12
- package/src/app/[variants]/(main)/discover/search/loading.tsx +0 -1
- package/src/app/[variants]/(main)/discover/search/page.tsx +0 -82
- package/src/features/PluginStore/InstalledPluginList.tsx +0 -59
- package/src/features/PluginStore/OnlineList.tsx +0 -87
- package/src/features/PluginStore/PluginItem/EditCustomPlugin.tsx +0 -55
- package/src/features/PluginStore/PluginItem/PluginTag.tsx +0 -29
- package/src/features/PluginStore/PluginItem/index.tsx +0 -83
- package/src/server/routers/edge/market/index.ts +0 -108
- package/src/services/__tests__/assistant.test.ts +0 -87
- package/src/services/assistant.ts +0 -25
- package/src/store/tool/slices/store/action.ts +0 -113
- package/src/store/tool/slices/store/initialState.ts +0 -17
- package/src/types/discover.ts +0 -179
- package/src/types/requestCache.ts +0 -3
- /package/src/app/[variants]/(main)/discover/(list)/{assistants → assistant}/_layout/Desktop.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{assistants → assistant}/_layout/Mobile.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{assistants → assistant}/layout.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{assistants → assistant}/loading.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{plugins → mcp}/_layout/Desktop.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{plugins → mcp}/_layout/Mobile.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{plugins → mcp}/layout.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{plugins → mcp}/loading.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{models → model}/_layout/Mobile.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{models → model}/features/const.ts +0 -0
- /package/src/app/[variants]/(main)/discover/(list)/{models → model}/layout.tsx +0 -0
- /package/src/{features/PluginStore/PluginItem → components/Plugins}/PluginAvatar.tsx +0 -0
- /package/src/server/routers/{edge → lambda}/config/__snapshots__/index.test.ts.snap +0 -0
- /package/src/server/routers/{edge → lambda}/config/index.test.ts +0 -0
- /package/src/store/tool/slices/{store → mcpStore}/index.ts +0 -0
@@ -10,13 +10,57 @@
|
|
10
10
|
},
|
11
11
|
"description": "助手介紹",
|
12
12
|
"detail": "詳情",
|
13
|
+
"details": {
|
14
|
+
"capabilities": {
|
15
|
+
"knowledge": {
|
16
|
+
"desc": "助理內建以下知識庫,幫助你回答更多問題。",
|
17
|
+
"title": "知識庫"
|
18
|
+
},
|
19
|
+
"plugin": {
|
20
|
+
"desc": "助理內建以下外掛,幫助你完成更多任務。",
|
21
|
+
"title": "內建外掛"
|
22
|
+
},
|
23
|
+
"title": "助理能力"
|
24
|
+
},
|
25
|
+
"overview": {
|
26
|
+
"example": "助理示範",
|
27
|
+
"title": "概覽"
|
28
|
+
},
|
29
|
+
"related": {
|
30
|
+
"listTitle": "相關助理",
|
31
|
+
"more": "查看更多",
|
32
|
+
"title": "相關推薦"
|
33
|
+
},
|
34
|
+
"sidebar": {
|
35
|
+
"toc": "目錄"
|
36
|
+
},
|
37
|
+
"summary": {
|
38
|
+
"title": "你可以使用該助理做什麼?"
|
39
|
+
},
|
40
|
+
"systemRole": {
|
41
|
+
"openingMessage": "開場訊息",
|
42
|
+
"openingQuestions": "開場問題",
|
43
|
+
"title": "助理設定"
|
44
|
+
}
|
45
|
+
},
|
13
46
|
"list": "助手列表",
|
14
47
|
"more": "更多",
|
15
48
|
"plugins": "集成插件",
|
16
49
|
"recentSubmits": "最近更新",
|
50
|
+
"sorts": {
|
51
|
+
"createdAt": "最近發布",
|
52
|
+
"identifier": "助理 ID",
|
53
|
+
"knowledgeCount": "知識庫數量",
|
54
|
+
"pluginCount": "外掛數量",
|
55
|
+
"title": "助理名稱",
|
56
|
+
"tokenUsage": "Token 使用量"
|
57
|
+
},
|
17
58
|
"suggestions": "相關推薦",
|
18
59
|
"systemRole": "助手設定",
|
19
|
-
"
|
60
|
+
"tokenUsage": "助理提示詞 Token 使用量",
|
61
|
+
"try": "試一下",
|
62
|
+
"withKnowledge": "該助理附帶知識庫",
|
63
|
+
"withPlugin": "該助理附帶外掛"
|
20
64
|
},
|
21
65
|
"back": "返回發現",
|
22
66
|
"category": {
|
@@ -41,6 +85,7 @@
|
|
41
85
|
"all": "全部",
|
42
86
|
"gaming-entertainment": "遊戲娛樂",
|
43
87
|
"life-style": "生活方式",
|
88
|
+
"lifestyle": "生活方式",
|
44
89
|
"media-generate": "媒體生成",
|
45
90
|
"science-education": "科學教育",
|
46
91
|
"social": "社交媒體",
|
@@ -102,10 +147,368 @@
|
|
102
147
|
"featuredTools": "推薦插件",
|
103
148
|
"more": "發現更多"
|
104
149
|
},
|
150
|
+
"isClaimed": "已認領",
|
151
|
+
"isFeatured": "推薦",
|
152
|
+
"isOfficial": "官方認證",
|
105
153
|
"like": "喜歡",
|
154
|
+
"mcp": {
|
155
|
+
"categories": {
|
156
|
+
"all": {
|
157
|
+
"description": "全部 MCP Servers",
|
158
|
+
"name": "全部"
|
159
|
+
},
|
160
|
+
"business": {
|
161
|
+
"description": "商業與企業服務",
|
162
|
+
"name": "商業服務"
|
163
|
+
},
|
164
|
+
"developer": {
|
165
|
+
"description": "開發相關的工具與服務",
|
166
|
+
"name": "開發工具"
|
167
|
+
},
|
168
|
+
"gaming-entertainment": {
|
169
|
+
"description": "遊戲、娛樂和休閒活動",
|
170
|
+
"name": "遊戲娛樂"
|
171
|
+
},
|
172
|
+
"health-wellness": {
|
173
|
+
"description": "健康、健身與身心養護",
|
174
|
+
"name": "健康養生"
|
175
|
+
},
|
176
|
+
"lifestyle": {
|
177
|
+
"description": "個人生活方式、習慣與日常活動",
|
178
|
+
"name": "生活方式"
|
179
|
+
},
|
180
|
+
"media-generate": {
|
181
|
+
"description": "媒體的生成、編輯與處理",
|
182
|
+
"name": "媒體生成"
|
183
|
+
},
|
184
|
+
"news": {
|
185
|
+
"description": "新聞聚合、報導與資訊服務",
|
186
|
+
"name": "新聞諮詢"
|
187
|
+
},
|
188
|
+
"productivity": {
|
189
|
+
"description": "任務管理、筆記與效率工具",
|
190
|
+
"name": "效率工具"
|
191
|
+
},
|
192
|
+
"science-education": {
|
193
|
+
"description": "科學研究、學習與教育工具",
|
194
|
+
"name": "科學教育"
|
195
|
+
},
|
196
|
+
"social": {
|
197
|
+
"description": "社交網絡與溝通交流",
|
198
|
+
"name": "社交媒體"
|
199
|
+
},
|
200
|
+
"stocks-finance": {
|
201
|
+
"description": "金融市場、交易與投資",
|
202
|
+
"name": "股票金融"
|
203
|
+
},
|
204
|
+
"tools": {
|
205
|
+
"description": "通用實用工具與服務",
|
206
|
+
"name": "實用工具"
|
207
|
+
},
|
208
|
+
"travel-transport": {
|
209
|
+
"description": "旅行規劃與交通出行",
|
210
|
+
"name": "旅行交通"
|
211
|
+
},
|
212
|
+
"weather": {
|
213
|
+
"description": "天氣預報與氣象服務",
|
214
|
+
"name": "氣象天氣"
|
215
|
+
},
|
216
|
+
"web-search": {
|
217
|
+
"description": "網頁搜尋與資訊檢索",
|
218
|
+
"name": "資訊檢索"
|
219
|
+
}
|
220
|
+
},
|
221
|
+
"details": {
|
222
|
+
"connectionType": {
|
223
|
+
"hybrid": {
|
224
|
+
"desc": "該服務可根據配置或使用場景,在本地或雲端運行,具備雙重運行能力。",
|
225
|
+
"title": "混合型服務"
|
226
|
+
},
|
227
|
+
"local": {
|
228
|
+
"desc": "該伺服器只能在用戶端本地設備上運行,需安裝並依賴本地資源。",
|
229
|
+
"title": "本地服務"
|
230
|
+
},
|
231
|
+
"remote": {
|
232
|
+
"desc": "該伺服器託管於遠端運行,因為它主要依賴遠端服務,不依賴本地環境。",
|
233
|
+
"title": "雲服務"
|
234
|
+
}
|
235
|
+
},
|
236
|
+
"deployment": {
|
237
|
+
"args": "參數",
|
238
|
+
"checkCommand": "檢查命令",
|
239
|
+
"command": "命令",
|
240
|
+
"commandLine": "系統依賴",
|
241
|
+
"connection": "連接方式",
|
242
|
+
"connectionType": "連接類型",
|
243
|
+
"description": "外掛的安裝和部署方式",
|
244
|
+
"descriptionPlaceholder": "可選的描述資訊",
|
245
|
+
"empty": "暫無部署選項",
|
246
|
+
"env": "環境變數",
|
247
|
+
"guide": "安裝說明",
|
248
|
+
"installation": "透過 {{method}} 安裝",
|
249
|
+
"installationMethod": "安裝方式",
|
250
|
+
"other": "其他設定",
|
251
|
+
"packageName": "套件名稱",
|
252
|
+
"platform": {
|
253
|
+
"steps": {
|
254
|
+
"claude": "- 打開 **Claude Desktop** 應用\n- 前往 **設定**,然後選擇 **開發者**\n- 點擊 **編輯配置**\n- 打開 **claude_desktop_config.json** 檔案\n- 複製並貼上伺服器配置到現有檔案中,然後儲存",
|
255
|
+
"cline": "- 打開安裝了 Cline 擴充功能的 VS Code\n- 點擊側邊欄中的 Cline 圖示\n- 從下拉選單中選擇 **MCP Servers**\n- 在 **Remote Servers** 標籤頁中,輸入伺服器名稱和您的 MCP 伺服器 URL\n- 點擊 **Add Server** 進行連接",
|
256
|
+
"cursor": "- 導航到 **設定**,然後選擇 Cursor 設定\n- 在左側選擇 **MCP**\n- 點擊右上角的 **新增全域 MCP 伺服器**\n- 複製並貼上伺服器配置到現有檔案中,然後儲存",
|
257
|
+
"lobeChat": "- 打開 **LobeChat 桌面版** 應用\n- 前往 **設定** - **預設助理**\n- 然後選擇 **外掛設定** - **自訂外掛**\n- 點擊 **快速匯入 JSON 配置**\n- 複製並貼上伺服器配置到文字框,然後安裝",
|
258
|
+
"openai": "- 打開您的 **OpenAI 應用** 或開發環境\n- 在 **Responses API** 中配置 MCP 工具\n- 在 API 請求的 **tools** 陣列中新增 MCP 區塊\n- 設定 **server_url** 為您的 MCP 伺服器端點\n- 包含認證所需的標頭資訊(API 金鑰、令牌等)\n- 使用 `allowed_tools` 參數限制暴露的工具\n- 設定 `require_approval` 來控制工具執行審批",
|
259
|
+
"vscode": "- 打開 VS Code\n- 打開命令面板(`Ctrl+Shift+P` / `Cmd+Shift+P`)\n- 輸入 **MCP: Add Server** 並選擇它\n- 選擇新增到工作區或使用者設定\n- 複製並貼上伺服器配置"
|
260
|
+
},
|
261
|
+
"title": "在 {{platform}} 中安裝"
|
262
|
+
},
|
263
|
+
"recommended": "推薦",
|
264
|
+
"systemDependencies": "系統依賴",
|
265
|
+
"table": {
|
266
|
+
"description": "描述",
|
267
|
+
"name": "名稱",
|
268
|
+
"required": "必填",
|
269
|
+
"type": "類型"
|
270
|
+
},
|
271
|
+
"title": "安裝方式"
|
272
|
+
},
|
273
|
+
"githubBadge": {
|
274
|
+
"desc": "LobeHub 定期對程式庫和文件進行掃描,以便於:\n\n- 確認 MCP 伺服器正常運行。\n- 擷取伺服器特性,例如工具、資源、提示資訊以及所需參數。\n- 我們的徽章幫助使用者快速評估 MCP 伺服器的安全性、功能特性以及安裝指南。\n\n請將以下程式碼複製到你的 `README.md` 檔案中:"
|
275
|
+
},
|
276
|
+
"nav": {
|
277
|
+
"needHelp": "需要幫助?",
|
278
|
+
"reportIssue": "回報問題",
|
279
|
+
"viewSourceCode": "查看原始碼"
|
280
|
+
},
|
281
|
+
"overview": {
|
282
|
+
"title": "概覽"
|
283
|
+
},
|
284
|
+
"related": {
|
285
|
+
"listTitle": "相關 MCP Server",
|
286
|
+
"more": "查看更多",
|
287
|
+
"title": "相關推薦"
|
288
|
+
},
|
289
|
+
"schema": {
|
290
|
+
"mode": {
|
291
|
+
"docs": "文件"
|
292
|
+
},
|
293
|
+
"prompts": {
|
294
|
+
"arguments": "參數配置",
|
295
|
+
"desc": "由使用者選擇觸發的互動式範本",
|
296
|
+
"empty": "暫無提示詞",
|
297
|
+
"instructions": "指令說明",
|
298
|
+
"table": {
|
299
|
+
"description": "描述",
|
300
|
+
"name": "名稱",
|
301
|
+
"required": "必填"
|
302
|
+
},
|
303
|
+
"title": "提示詞列表"
|
304
|
+
},
|
305
|
+
"resources": {
|
306
|
+
"desc": "由用戶端附加和管理的上下文資料",
|
307
|
+
"empty": "暫無資源",
|
308
|
+
"table": {
|
309
|
+
"description": "描述",
|
310
|
+
"mineType": "MIME 類型",
|
311
|
+
"name": "名稱",
|
312
|
+
"uri": "URI"
|
313
|
+
},
|
314
|
+
"title": "資源列表"
|
315
|
+
},
|
316
|
+
"title": "外掛功能",
|
317
|
+
"tools": {
|
318
|
+
"desc": "向大型語言模型(LLM)暴露的功能介面以執行操作",
|
319
|
+
"empty": "暫無工具",
|
320
|
+
"inputSchema": "輸入描述",
|
321
|
+
"instructions": "指令說明",
|
322
|
+
"table": {
|
323
|
+
"description": "描述",
|
324
|
+
"name": "名稱",
|
325
|
+
"required": "必填",
|
326
|
+
"type": "類型"
|
327
|
+
},
|
328
|
+
"title": "工具列表"
|
329
|
+
}
|
330
|
+
},
|
331
|
+
"score": {
|
332
|
+
"claimed": {
|
333
|
+
"desc": "此 MCP Server 已被所有者認領,確保其所有權和管理。",
|
334
|
+
"title": "已被所有者認領"
|
335
|
+
},
|
336
|
+
"deployMoreThanManual": {
|
337
|
+
"desc": "該 MCP Server 提供了除 Manual 外更友善的安裝方式,允許使用者輕鬆部署和使用。",
|
338
|
+
"title": "提供友善的安裝方式"
|
339
|
+
},
|
340
|
+
"deployment": {
|
341
|
+
"desc": "該 MCP Server 提供了至少一種安裝方式,允許使用者部署和使用。",
|
342
|
+
"descWithCount": "該 MCP Server 提供了 {{number}} 種安裝方式,允許使用者部署和使用。",
|
343
|
+
"title": "提供至少一種安裝方式"
|
344
|
+
},
|
345
|
+
"license": {
|
346
|
+
"desc": "該程式庫包含一個 LICENSE 檔案。",
|
347
|
+
"descWithlicense": "該程式庫授權為 {{license}}。",
|
348
|
+
"title": "具有 LICENSE"
|
349
|
+
},
|
350
|
+
"listTitle": "評分明細",
|
351
|
+
"notClaimed": {
|
352
|
+
"desc": "如果您是此 MCP Server 所有者,可透過以下方式認領。",
|
353
|
+
"title": "未被所有者認領"
|
354
|
+
},
|
355
|
+
"prompts": {
|
356
|
+
"desc": "該 MCP Server 提供了提示詞,允許使用者與服務進行互動。",
|
357
|
+
"descWithCount": "該 MCP Server 提供了 {{number}} 個提示詞,允許使用者與服務進行互動。",
|
358
|
+
"title": "包含提示詞"
|
359
|
+
},
|
360
|
+
"readme": {
|
361
|
+
"desc": "該程式庫包含一個 README.md 檔案。",
|
362
|
+
"title": "具有 README"
|
363
|
+
},
|
364
|
+
"resources": {
|
365
|
+
"desc": "該 MCP Server 提供了資源,允許使用者附加和管理上下文資料。",
|
366
|
+
"descWithCount": "該 MCP Server 提供了 {{number}} 個資源,允許使用者附加和管理上下文資料。",
|
367
|
+
"title": "包含資源"
|
368
|
+
},
|
369
|
+
"title": "評分",
|
370
|
+
"tools": {
|
371
|
+
"desc": "服務需提供至少一個工具,允許使用者執行特定操作。",
|
372
|
+
"descWithCount": "該 MCP Server 提供了 {{number}} 個工具功能,允許使用者執行特定操作。",
|
373
|
+
"title": "包含至少一個工具"
|
374
|
+
},
|
375
|
+
"validated": {
|
376
|
+
"desc": "該 MCP Server 已通過安裝驗證,確保其品質和可靠性。",
|
377
|
+
"title": "已通過驗證"
|
378
|
+
}
|
379
|
+
},
|
380
|
+
"scoreLevel": {
|
381
|
+
"a": {
|
382
|
+
"desc": "該 MCP Server 經過嚴格驗證,提供了全面的功能和高品質的使用者體驗。",
|
383
|
+
"fullTitle": "優秀外掛",
|
384
|
+
"title": "優質"
|
385
|
+
},
|
386
|
+
"b": {
|
387
|
+
"desc": "該 MCP Server 提供了良好的功能和使用者體驗,但可能在某些方面需要改進。",
|
388
|
+
"fullTitle": "功能良好",
|
389
|
+
"title": "良好"
|
390
|
+
},
|
391
|
+
"f": {
|
392
|
+
"desc": "該 MCP Server 功能不完整或品質較低,建議使用者謹慎使用。",
|
393
|
+
"fullTitle": "品質欠佳",
|
394
|
+
"title": "欠佳"
|
395
|
+
}
|
396
|
+
},
|
397
|
+
"settings": {
|
398
|
+
"capabilities": {
|
399
|
+
"prompts": "提示詞",
|
400
|
+
"resources": "資源",
|
401
|
+
"title": "外掛能力",
|
402
|
+
"tools": "工具"
|
403
|
+
},
|
404
|
+
"configuration": {
|
405
|
+
"title": "外掛配置"
|
406
|
+
},
|
407
|
+
"connection": {
|
408
|
+
"args": "啟動參數",
|
409
|
+
"command": "啟動命令",
|
410
|
+
"title": "連線資訊",
|
411
|
+
"type": "連線類型",
|
412
|
+
"url": "服務地址"
|
413
|
+
},
|
414
|
+
"saveSettings": "儲存設定",
|
415
|
+
"title": "外掛設定"
|
416
|
+
},
|
417
|
+
"sidebar": {
|
418
|
+
"install": "安裝 MCP Server",
|
419
|
+
"meta": {
|
420
|
+
"homepage": "官方首頁",
|
421
|
+
"installCount": "安裝數",
|
422
|
+
"language": "原始碼語言",
|
423
|
+
"license": "授權證書",
|
424
|
+
"published": "發布時間",
|
425
|
+
"repo": "原始碼倉庫",
|
426
|
+
"stars": "星標數",
|
427
|
+
"title": "詳細資訊",
|
428
|
+
"updated": "最近更新"
|
429
|
+
},
|
430
|
+
"moreServerConfig": "查看詳情",
|
431
|
+
"recommendServers": "相關 MCP",
|
432
|
+
"serverConfig": "安裝配置",
|
433
|
+
"toc": "目錄"
|
434
|
+
},
|
435
|
+
"summary": {
|
436
|
+
"title": "你可以使用該 MCP Server 做什麼?"
|
437
|
+
},
|
438
|
+
"totalScore": {
|
439
|
+
"description": "根據各項指標綜合計算得出的總分",
|
440
|
+
"legend": {
|
441
|
+
"aGrade": "A級 ({{minPercent}}-100%)",
|
442
|
+
"bGrade": "B級 ({{minPercent}}-{{maxPercent}}%)",
|
443
|
+
"fGrade": "F級 (0-{{maxPercent}}%)"
|
444
|
+
},
|
445
|
+
"pointsFormat": "{{score}}/{{total}} 分",
|
446
|
+
"popover": {
|
447
|
+
"completedOptional": "✅ 已完成可選項 ({{count}}項)",
|
448
|
+
"completedRequired": "✅ 已完成必需項 ({{count}}項)",
|
449
|
+
"incompleteOptional": "⏸️ 未完成可選項 ({{count}}項)",
|
450
|
+
"incompleteRequired": "❌ 未完成必需項 ({{count}}項)",
|
451
|
+
"title": "評分詳情"
|
452
|
+
},
|
453
|
+
"ratingFormat": "評級: {{level}}",
|
454
|
+
"scoreInfo": {
|
455
|
+
"items": "項",
|
456
|
+
"points": "分",
|
457
|
+
"requiredItems": "必需項"
|
458
|
+
},
|
459
|
+
"title": "總分"
|
460
|
+
},
|
461
|
+
"versions": {
|
462
|
+
"table": {
|
463
|
+
"isLatest": "最新版本",
|
464
|
+
"isValidated": "通過驗證",
|
465
|
+
"publishAt": "發布時間",
|
466
|
+
"version": "版本"
|
467
|
+
},
|
468
|
+
"title": "版本歷史"
|
469
|
+
}
|
470
|
+
},
|
471
|
+
"hero": {
|
472
|
+
"desc": "開源、可部署的 MCP Servers 平台,幫助 AI 系統輕鬆存取檔案系統、資料庫、API 等關鍵資源,全面擴展你的 AI 能力。",
|
473
|
+
"subTitle": "開源 & 開箱即用",
|
474
|
+
"title": "面向 AI 的開源 MCP 市場"
|
475
|
+
},
|
476
|
+
"sorts": {
|
477
|
+
"createdAt": "最近新增",
|
478
|
+
"installCount": "安裝數",
|
479
|
+
"isFeatured": "推薦外掛",
|
480
|
+
"isValidated": "已驗證外掛",
|
481
|
+
"promptsCount": "提示詞數",
|
482
|
+
"ratingCount": "評分數",
|
483
|
+
"resourcesCount": "資源數",
|
484
|
+
"toolsCount": "工具數",
|
485
|
+
"updatedAt": "最近更新"
|
486
|
+
},
|
487
|
+
"title": "MCP 市場",
|
488
|
+
"unvalidated": {
|
489
|
+
"desc": "此 MCP Server 暫未經過驗證",
|
490
|
+
"title": "未驗證"
|
491
|
+
},
|
492
|
+
"validated": {
|
493
|
+
"desc": "此 MCP Server 經過驗證,確保其品質和可靠性。",
|
494
|
+
"descWithDate": "此 MCP Server 於 {{date}} 經過驗證,確保其品質和可靠性。",
|
495
|
+
"title": "已驗證"
|
496
|
+
}
|
497
|
+
},
|
106
498
|
"models": {
|
499
|
+
"abilities": "模型能力",
|
107
500
|
"chat": "開始會話",
|
108
501
|
"contentLength": "最大上下文長度",
|
502
|
+
"details": {
|
503
|
+
"overview": {
|
504
|
+
"title": "概覽"
|
505
|
+
},
|
506
|
+
"related": {
|
507
|
+
"listTitle": "相關模型",
|
508
|
+
"more": "查看更多",
|
509
|
+
"title": "相關推薦"
|
510
|
+
}
|
511
|
+
},
|
109
512
|
"free": "免費",
|
110
513
|
"guide": "配置指南",
|
111
514
|
"list": "模型列表",
|
@@ -156,11 +559,30 @@
|
|
156
559
|
"throughput": "吞吐量",
|
157
560
|
"throughputTooltip": "流請求每秒傳輸的平均 Token 數"
|
158
561
|
},
|
562
|
+
"sorts": {
|
563
|
+
"contextWindowTokens": "上下文長度",
|
564
|
+
"identifier": "模型 ID",
|
565
|
+
"inputPrice": "輸入價格",
|
566
|
+
"outputPrice": "輸出價格",
|
567
|
+
"providerCount": "服務商數量",
|
568
|
+
"releasedAt": "最近發布"
|
569
|
+
},
|
159
570
|
"suggestions": "相關模型",
|
160
571
|
"supportedProviders": "支持該模型的服務商"
|
161
572
|
},
|
162
573
|
"plugins": {
|
163
574
|
"community": "社區插件",
|
575
|
+
"details": {
|
576
|
+
"settings": {
|
577
|
+
"title": "外掛設定"
|
578
|
+
},
|
579
|
+
"summary": {
|
580
|
+
"title": "你可以使用該外掛做什麼?"
|
581
|
+
},
|
582
|
+
"tools": {
|
583
|
+
"title": "外掛工具"
|
584
|
+
}
|
585
|
+
},
|
164
586
|
"install": "安裝插件",
|
165
587
|
"installed": "已安裝",
|
166
588
|
"list": "插件列表",
|
@@ -173,36 +595,54 @@
|
|
173
595
|
"more": "更多",
|
174
596
|
"official": "官方插件",
|
175
597
|
"recentSubmits": "最近更新",
|
598
|
+
"sorts": {
|
599
|
+
"createdAt": "最近發布",
|
600
|
+
"identifier": "外掛 ID",
|
601
|
+
"title": "外掛名稱"
|
602
|
+
},
|
176
603
|
"suggestions": "相關推薦"
|
177
604
|
},
|
178
605
|
"providers": {
|
179
606
|
"config": "配置服務商",
|
607
|
+
"details": {
|
608
|
+
"guide": {
|
609
|
+
"title": "接入指南"
|
610
|
+
},
|
611
|
+
"overview": {
|
612
|
+
"title": "概覽"
|
613
|
+
},
|
614
|
+
"related": {
|
615
|
+
"listTitle": "相關服務商",
|
616
|
+
"more": "查看更多",
|
617
|
+
"title": "相關推薦"
|
618
|
+
}
|
619
|
+
},
|
180
620
|
"list": "模型服務商列表",
|
181
621
|
"modelCount": "{{count}} 個模型",
|
622
|
+
"modelName": "模型名稱",
|
182
623
|
"modelSite": "模型文件",
|
183
624
|
"more": "更多",
|
184
625
|
"officialSite": "官方網站",
|
185
626
|
"showAllModels": "顯示所有模型",
|
627
|
+
"sorts": {
|
628
|
+
"default": "預設排序",
|
629
|
+
"identifier": "服務商 ID",
|
630
|
+
"modelCount": "模型數量"
|
631
|
+
},
|
186
632
|
"suggestions": "相關服務商",
|
187
633
|
"supportedModels": "支持模型"
|
188
634
|
},
|
635
|
+
"publishedTime": "發布於",
|
189
636
|
"search": {
|
190
637
|
"placeholder": "搜索名稱介紹或關鍵詞...",
|
191
638
|
"result": "{{count}} 個關於 <highlight>{{keyword}}</highlight> 的搜索結果",
|
192
639
|
"searching": "搜索中..."
|
193
640
|
},
|
194
|
-
"sort": {
|
195
|
-
"mostLiked": "最多喜愛",
|
196
|
-
"mostUsed": "最多使用",
|
197
|
-
"newest": "從新到舊",
|
198
|
-
"oldest": "從舊到新",
|
199
|
-
"recommended": "推薦"
|
200
|
-
},
|
201
641
|
"tab": {
|
202
|
-
"
|
642
|
+
"assistant": "助理",
|
203
643
|
"home": "首頁",
|
204
|
-
"
|
205
|
-
"
|
206
|
-
"
|
644
|
+
"model": "模型",
|
645
|
+
"plugin": "外掛",
|
646
|
+
"provider": "模型服務商"
|
207
647
|
}
|
208
648
|
}
|
@@ -13,6 +13,10 @@
|
|
13
13
|
"title": "AI助手"
|
14
14
|
},
|
15
15
|
"description": "內容創作、文案、問答、圖像生成、視頻生成、語音生成、智能代理、自定義 AI 應用,定制你專屬的 AI 應用工作台",
|
16
|
+
"mcp": {
|
17
|
+
"description": "搜尋、比較並連接數千個 MCP 伺服器,幫助 AI 系統輕鬆存取檔案系統、資料庫、API 等關鍵資源,全面擴展你的 AI 能力",
|
18
|
+
"title": "MCP 伺服器市場"
|
19
|
+
},
|
16
20
|
"models": {
|
17
21
|
"description": "探索主流 AI 模型 OpenAI / GPT / Claude 3 / Gemini / Ollama / Azure / DeepSeek",
|
18
22
|
"title": "AI模型"
|
@@ -12,6 +12,15 @@
|
|
12
12
|
"tool_call": "工具呼叫"
|
13
13
|
},
|
14
14
|
"detailModal": {
|
15
|
+
"customPlugin": {
|
16
|
+
"description": "請前往編輯頁面查看詳情",
|
17
|
+
"editBtn": "立即編輯",
|
18
|
+
"title": "這是一個自訂插件"
|
19
|
+
},
|
20
|
+
"emptyState": {
|
21
|
+
"description": "請先安裝此外掛,以查看外掛功能和設定選項",
|
22
|
+
"title": "安裝後查看外掛詳情"
|
23
|
+
},
|
15
24
|
"info": {
|
16
25
|
"description": "API 描述",
|
17
26
|
"name": "API 名稱"
|
@@ -230,6 +239,50 @@
|
|
230
239
|
},
|
231
240
|
"title": "本地檔案"
|
232
241
|
},
|
242
|
+
"mcpInstall": {
|
243
|
+
"CHECKING_INSTALLATION": "檢查安裝環境...",
|
244
|
+
"COMPLETED": "安裝完成",
|
245
|
+
"CONFIGURATION_REQUIRED": "請完成相關配置後繼續安裝",
|
246
|
+
"ERROR": "安裝錯誤",
|
247
|
+
"FETCHING_MANIFEST": "獲取插件描述檔...",
|
248
|
+
"GETTING_SERVER_MANIFEST": "初始化 MCP 伺服器...",
|
249
|
+
"INSTALLING_PLUGIN": "正在安裝插件...",
|
250
|
+
"configurationDescription": "該 MCP 插件需要配置參數才能正常使用,請填寫必要的配置信息",
|
251
|
+
"configurationRequired": "配置插件參數",
|
252
|
+
"continueInstall": "繼續安裝",
|
253
|
+
"dependenciesDescription": "此插件需要安裝以下系統依賴才能正常工作,請按照指引安裝缺失的依賴項,然後點擊重新檢查繼續安裝。",
|
254
|
+
"dependenciesRequired": "請安裝插件的系統依賴",
|
255
|
+
"dependencyStatus": {
|
256
|
+
"installed": "已安裝",
|
257
|
+
"notInstalled": "未安裝",
|
258
|
+
"requiredVersion": "需要版本: {{version}}"
|
259
|
+
},
|
260
|
+
"errorDetails": {
|
261
|
+
"args": "參數",
|
262
|
+
"command": "命令",
|
263
|
+
"connectionParams": "連接參數",
|
264
|
+
"env": "環境變數",
|
265
|
+
"errorOutput": "錯誤日誌",
|
266
|
+
"exitCode": "退出碼",
|
267
|
+
"hideDetails": "收起詳情",
|
268
|
+
"originalError": "原始錯誤",
|
269
|
+
"showDetails": "查看詳情"
|
270
|
+
},
|
271
|
+
"errorTypes": {
|
272
|
+
"CONNECTION_FAILED": "連接失敗",
|
273
|
+
"INITIALIZATION_TIMEOUT": "初始化逾時",
|
274
|
+
"PROCESS_SPAWN_ERROR": "進程啟動失敗",
|
275
|
+
"UNKNOWN_ERROR": "未知錯誤",
|
276
|
+
"VALIDATION_ERROR": "參數驗證失敗"
|
277
|
+
},
|
278
|
+
"installError": "MCP 插件安裝失敗,失敗原因: {{detail}}",
|
279
|
+
"installMethods": {
|
280
|
+
"manual": "手動安裝:",
|
281
|
+
"recommended": "推薦安裝方式:"
|
282
|
+
},
|
283
|
+
"recheckDependencies": "重新檢查",
|
284
|
+
"skipDependencies": "跳過檢查"
|
285
|
+
},
|
233
286
|
"pluginList": "外掛清單",
|
234
287
|
"search": {
|
235
288
|
"apiName": {
|
@@ -266,16 +319,48 @@
|
|
266
319
|
},
|
267
320
|
"setting": "插件設置",
|
268
321
|
"settings": {
|
322
|
+
"capabilities": {
|
323
|
+
"prompts": "提示詞",
|
324
|
+
"resources": "資源",
|
325
|
+
"title": "插件能力",
|
326
|
+
"tools": "工具"
|
327
|
+
},
|
328
|
+
"configuration": {
|
329
|
+
"title": "插件配置"
|
330
|
+
},
|
331
|
+
"connection": {
|
332
|
+
"args": "啟動參數",
|
333
|
+
"command": "啟動命令",
|
334
|
+
"title": "連接資訊",
|
335
|
+
"type": "連接類型",
|
336
|
+
"url": "服務地址"
|
337
|
+
},
|
338
|
+
"edit": "編輯",
|
339
|
+
"envConfigDescription": "這些配置將作為環境變數在 MCP 伺服器啟動時傳遞給進程",
|
340
|
+
"httpTypeNotice": "HTTP 類型的 MCP 插件暫無需要配置的環境變數",
|
269
341
|
"indexUrl": {
|
270
342
|
"title": "外掛市集索引",
|
271
343
|
"tooltip": "目前不支援編輯"
|
272
344
|
},
|
345
|
+
"messages": {
|
346
|
+
"connectionUpdateFailed": "連線資訊更新失敗",
|
347
|
+
"connectionUpdateSuccess": "連線資訊更新成功",
|
348
|
+
"envUpdateFailed": "環境變數保存失敗",
|
349
|
+
"envUpdateSuccess": "環境變數保存成功"
|
350
|
+
},
|
273
351
|
"modalDesc": "設定外掛市集的網址後,您可以使用自訂的外掛市集",
|
352
|
+
"rules": {
|
353
|
+
"argsRequired": "請輸入啟動參數",
|
354
|
+
"commandRequired": "請輸入啟動命令",
|
355
|
+
"urlRequired": "請輸入服務地址"
|
356
|
+
},
|
357
|
+
"saveSettings": "保存設置",
|
274
358
|
"title": "設定外掛市集"
|
275
359
|
},
|
276
360
|
"showInPortal": "請在入口網站中查看",
|
277
361
|
"store": {
|
278
362
|
"actions": {
|
363
|
+
"cancel": "取消安裝",
|
279
364
|
"confirmUninstall": "即將卸載該插件,卸載後將清除該插件配置,請確認你的操作",
|
280
365
|
"detail": "詳情",
|
281
366
|
"install": "安裝",
|
@@ -286,13 +371,15 @@
|
|
286
371
|
"communityPlugin": "社群外掛",
|
287
372
|
"customPlugin": "自訂插件",
|
288
373
|
"empty": "暫無已安裝插件",
|
374
|
+
"emptySelectHint": "選擇插件以預覽詳細資訊",
|
289
375
|
"installAllPlugins": "安裝全部",
|
290
376
|
"networkError": "獲取插件商店失敗,請檢查網路連線後重試",
|
291
377
|
"placeholder": "搜尋插件名稱介紹或關鍵字...",
|
292
378
|
"releasedAt": "發佈於 {{createdAt}}",
|
293
379
|
"tabs": {
|
294
|
-
"
|
295
|
-
"
|
380
|
+
"installed": "已安裝",
|
381
|
+
"mcp": "MCP 外掛",
|
382
|
+
"old": "LobeChat 插件"
|
296
383
|
},
|
297
384
|
"title": "插件商店"
|
298
385
|
},
|