Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I work with Serply, the provider of the search API behind this MCP server. Sharing that up front so the maintainers can weigh it.
Summary
X-Api-Key请求头连接官方远程 MCPhttps://api.serply.io/mcppriority: 7),沿用 feat(mcp): 新增 Exa Search 连接入口 #2040 的credential卡片写法,不涉及主进程或 IPC 改动apps/electron/package.json补丁版本Adds a Serply Search credential card to the MCP connection catalog, mirroring the Exa card from #2040. The user pastes one API key, Proma stores it in the system Keychain, and connects to the official remote MCP over streamable HTTP with the
X-Api-Keyheader. The server exposes google_search, google_news_search, google_scholar_search, google_jobs_search, google_maps_search, google_video_search, bing_search, amazon_product_search and scrape_url.Test plan
bun run typecheck全仓通过bun test apps/electron/src/renderer/components/agent-skills/integration-catalog.test.ts通过(新增一条 Serply 的 BDD 用例,3 pass)https://api.serply.io/mcp走完initialize->tools/list->tools/call,9 个工具全部返回;不带 Key 返回 401Notes
acquisitionUrl暂指向 https://serply.io,`setupUrl` 指向 https://serply.io/docsinitialize与tools/list阶段不校验 Key 是否有效,只在tools/call时返回Invalid API key。因此填错 Key 时卡片会显示已连接,首次调用工具才会报错。这与 Serply 服务端行为一致,如需在握手阶段验证可在后续跟进