← Tools Reference

Moorcheh

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

API key7 toolshttps://api.moorcheh.ai/v1
POST
moorcheh_create_text_namespace
Create a text namespace in Moorcheh for storing searchable documents.

/namespaces

1 parameter
ParamTypeRequiredDescription
namespace_namestringrequiredThe Moorcheh namespace name containing only letters, numbers, hyphens, or under…
GET
moorcheh_list_namespaces
List Moorcheh namespaces with their types, sizes, and creation times.

/namespaces

POST
moorcheh_upload_text_documents
Upload text documents and flat metadata to a Moorcheh text namespace.

/namespaces/{namespace_name}/documents

2 parameters
ParamTypeRequiredDescription
namespace_namestringrequiredThe Moorcheh namespace name containing only letters, numbers, hyphens, or under…
documentsarrayrequiredText documents to upload.
POST
moorcheh_get_documents
Retrieve up to 100 Moorcheh text documents by identifier.

/namespaces/{namespace_name}/documents/get

2 parameters
ParamTypeRequiredDescription
namespace_namestringrequiredThe Moorcheh namespace name containing only letters, numbers, hyphens, or under…
idsarrayrequiredDocument identifiers to process.
GET
moorcheh_fetch_text_data
Fetch one cursor-paginated page of text chunks from a Moorcheh namespace.

/namespaces/{namespace_name}/documents/fetch-text-data

3 parameters
ParamTypeRequiredDescription
namespace_namestringrequiredThe Moorcheh namespace name containing only letters, numbers, hyphens, or under…
limitintegeroptionalThe maximum number of items to return, up to 100.
next_tokenstringoptionalThe opaque cursor returned by the previous page.
POST
moorcheh_delete_documents
Permanently delete up to 1,000 documents from a Moorcheh text namespace.

/namespaces/{namespace_name}/documents/delete

2 parameters
ParamTypeRequiredDescription
namespace_namestringrequiredThe Moorcheh namespace name containing only letters, numbers, hyphens, or under…
idsarrayrequiredDocument identifiers to delete.
POST
moorcheh_search_text
Search one or more Moorcheh text namespaces with a semantic text query.

/search

5 parameters
ParamTypeRequiredDescription
querystringrequiredThe semantic text query, optionally ending with Moorcheh filters.
namespacesarrayrequiredText namespace names to search.
top_kintegeroptionalThe maximum number of relevant chunks to return.
kiosk_modebooleanoptionalWhether to filter results below a relevance threshold.
thresholdnumberoptionalThe minimum relevance score when kiosk_mode is enabled.