Conversation
Author
|
Hi team! Quick note on CI: the only red check is All 105 catalog schema and sync tests pass cleanly, and the PR is ready for review whenever someone has a moment. Thank you! |
Author
|
Hi team! Friendly ping on the AnySearch MCP integration PR (#639). A quick summary of what it brings to the OpenHands catalog:
The PR is fully additive (no existing behaviors modified), and all 105 catalog schema & sync tests pass cleanly. Could you help add the Thanks so much for your time and review! |
This branch has not been deployed
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.
Why
OpenHands users currently have limited options for real-time web and vertical domain information retrieval. Adding AnySearch to the extensions integrations catalog introduces:
https://api.anysearch.com/mcpwithout requiring any local binaries, Node runtime installations, or container setup.search: High-relevance web search across 17 vertical domains (academic,code,finance,legal,security, etc.) with specialized filters.batch_search: Parallel execution of up to 5 queries in a single round-trip.extract: Clean Markdown content extraction from target URLs for LLM analysis.get_sub_domains: Dynamic discovery of vertical search capabilities and query parameters.Summary
integrations/catalog/anysearch.jsondefining AnySearch Streamable HTTP MCP integration with optional Bearer authentication.integrations/catalog-index.jsvianpm run build:integrations.Issue Number
Fixes #638
How to Test
1. Catalog Schema and Sync Tests
uv run --group test pytest tests/test_catalog_schema.py tests/test_integration_catalog_in_sync.pyExpected: 105 passed.
2. Verification of Live MCP Endpoints (Anonymous Smoke Test)
All four MCP tools can be verified immediately without credentials:
3. Optional Bearer Authentication Test
Video/Screenshots
Validated against live production endpoint
https://api.anysearch.com/mcp. All JSON-RPC methods (initialize,tools/list,search,batch_search,extract,get_sub_domains) succeed with HTTP 200 responses. Catalog schema and sync test suite passed 105/105.Live MCP
tools/listresponse (4 tools registered; description and inputSchema omitted for brevity){ "jsonrpc": "2.0", "id": 2, "result": { "tools": [ { "name": "batch_search" }, { "name": "extract" }, { "name": "get_sub_domains" }, { "name": "search" } ] } }Notes
None.