Skip to main content
Glama
rspace-os

RSpace MCP Server

Official
by rspace-os

get_recent_samples_summary

Retrieve a summary of recent research samples with essential information for dashboard displays, using configurable time windows and result counts.

Instructions

Retrieves recent samples with minimal data for dashboard views

Usage: Quick overview of recent activity without full sample details Performance: Optimized for dashboard and summary displays Filtering: Configurable time window and result count

Returns: Lightweight sample list with essential information only

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
days_backNo
page_sizeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • The handler function for the 'get_recent_samples_summary' tool, registered via the @mcp.tool decorator. This is the primary implementation point, currently a stub with TODO for efficient recent samples query using date filtering.
    @mcp.tool(tags={"rspace", "inventory", "utility"})
    def get_recent_samples_summary(days_back: int = 7, page_size: int = 10) -> list:
        """
        Retrieves recent samples with minimal data for dashboard views
        
        Usage: Quick overview of recent activity without full sample details
        Performance: Optimized for dashboard and summary displays
        Filtering: Configurable time window and result count
        
        Returns: Lightweight sample list with essential information only
        """
        # TODO: Implement efficient recent samples query
        # This would use date filtering and minimal field selection
        # for optimal performance
        pass
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It adds some behavioral context: 'Optimized for dashboard and summary displays' hints at performance characteristics, and 'Returns: Lightweight sample list with essential information only' describes the output format. However, it doesn't cover critical aspects like whether this is a read-only operation (implied but not stated), error conditions, or rate limits, leaving gaps for a mutation-free tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded, with the core purpose in the first sentence followed by bullet-like sections (Usage, Performance, Filtering, Returns). Each sentence earns its place by adding distinct value—no wasted words. It's appropriately sized for a simple retrieval tool with two parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (2 parameters, no nested objects) and the presence of an output schema, the description is mostly complete. It covers purpose, usage, performance hints, parameter semantics, and return format. However, with no annotations, it could benefit from explicitly stating read-only behavior or other traits, but the output schema reduces the need for return value details, keeping it adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds meaningful context: 'Filtering: Configurable time window and result count' explains the purpose of the parameters beyond their names ('days_back' and 'page_size'). This clarifies that 'days_back' controls the time window and 'page_size' limits results, which is valuable given the lack of schema descriptions. However, it doesn't detail default values or constraints, so it's not a full 5.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Retrieves recent samples with minimal data for dashboard views.' It specifies the verb ('retrieves'), resource ('recent samples'), and scope ('minimal data for dashboard views'), distinguishing it from more detailed retrieval tools like 'get_sample' or 'list_samples' in the sibling list. However, it doesn't explicitly contrast with all siblings, so it's not a perfect 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage context: 'Quick overview of recent activity without full sample details' and 'Optimized for dashboard and summary displays.' This implicitly guides when to use this tool (for summaries) versus alternatives like 'get_sample' (for full details). However, it doesn't explicitly name alternatives or state when not to use it, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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