← Tools Reference

Metaso

Metaso integration (AI, Data). Imported from open-connector.

API key4 toolshttps://metaso.cn/api/v1
POST
metaso_search
Search webpages, documents, papers, images, videos, or podcasts with the Metaso search API.

/search

7 parameters
ParamTypeRequiredDescription
qstringrequiredThe search query.
scopestringoptionalThe Metaso search scope.
includeSummarybooleanoptionalWhether Metaso should use webpage summaries to improve recall.
includeRawContentbooleanoptionalWhether Metaso should fetch raw webpage content.
sizeintegeroptionalThe maximum number of results to return.
pageintegeroptionalThe one-based results page number to return.
conciseSnippetbooleanoptionalWhether to return concise snippet matches.
POST
metaso_read_webpage
Read one webpage with Metaso and return either the extracted markdown string or the structured JSON payload.

/reader

2 parameters
ParamTypeRequiredDescription
urlstringrequiredThe webpage URL to read.
formatstringrequiredThe output format returned by the Metaso reader.
POST
metaso_create_chat_completion
Create one non-streaming Metaso chat completion grounded by the requested Metaso scope.

/chat/completions

6 parameters
ParamTypeRequiredDescription
scopestringoptionalThe Metaso search scope.
modelstringoptionalThe Metaso chat model identifier.
conciseSnippetbooleanoptionalWhether to request concise snippets in grounding results.
messagesarrayoptionalThe ordered chat messages.
messagestringoptionalA convenience single user message that is converted into messages.
streambooleanoptionalWhether to request a streaming response. Use the action that matches the desire…
POST
metaso_create_chat_completion_stream
Consume a streamed Metaso chat completion and return the ordered chunks plus aggregated assistant content.

/chat/completions

6 parameters
ParamTypeRequiredDescription
scopestringoptionalThe Metaso search scope.
modelstringoptionalThe Metaso chat model identifier.
conciseSnippetbooleanoptionalWhether to request concise snippets in grounding results.
messagesarrayoptionalThe ordered chat messages.
messagestringoptionalA convenience single user message that is converted into messages.
streambooleanoptionalWhether to request a streaming response. Use the action that matches the desire…