Skip to main content
Glama

RSpace MCP Server

Official
by rspace-os

find_documents_by_content

Search RSpace documents by content terms using AND/OR operators, filter with exclusion terms, and sort results to locate research data matching specific criteria.

Instructions

Advanced content-based document search

Usage: Find documents containing specific content terms

Parameters:

  • content_terms: List of terms that should appear in document content

  • operator: "and" (all terms must appear) or "or" (any term can appear)

  • exclude_terms: Optional list of terms to exclude from results

  • order_by: Sort results by field

  • page_size: Number of results to return

Returns: Dictionary with search results

Example: find_documents_by_content(["DNA", "extraction"], operator="and")

Input Schema

NameRequiredDescriptionDefault
content_termsYes
exclude_termsNo
operatorNoand
order_byNolastModified desc
page_sizeNo

Input Schema (JSON Schema)

{ "properties": { "content_terms": { "items": { "type": "string" }, "title": "Content Terms", "type": "array" }, "exclude_terms": { "default": null, "items": { "type": "string" }, "title": "Exclude Terms", "type": "array" }, "operator": { "default": "and", "enum": [ "and", "or" ], "title": "Operator", "type": "string" }, "order_by": { "default": "lastModified desc", "title": "Order By", "type": "string" }, "page_size": { "default": 20, "title": "Page Size", "type": "integer" } }, "required": [ "content_terms" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rspace-os/rspace-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server