Skip to main content
Glama
Cam10001110101

mcp-server-ollama-deep-researcher

get_status

Check the current status of ongoing research tasks to monitor progress and retrieve results when available.

Instructions

Get the current status of any ongoing research

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
_dummyYesNo parameters needed

Implementation Reference

  • The handler function for the 'get_status' tool. It checks if there is an ongoing research (currentResearch) and returns a formatted status message with topic, step, loop count, summary, and sources; otherwise, indicates no research in progress.
    case "get_status": { if (!currentResearch) { return { content: [ { type: "text", text: "No research is currently in progress.", }, ], }; } return { content: [ { type: "text", text: `Research Status: Topic: ${currentResearch.topic} Current Step: ${currentResearch.currentStep} Loop Count: ${currentResearch.loopCount} Summary: ${currentResearch.summary} Sources: ${currentResearch.sources.join("\n")}`, }, ], }; }
  • src/index.ts:112-127 (registration)
    Registration of the 'get_status' tool in the list of tools returned by ListToolsRequestHandler, including its name, description, and input schema (which requires a dummy parameter).
    { name: "get_status", description: "Get the current status of any ongoing research", inputSchema: { type: "object", properties: { _dummy: { type: "string", description: "No parameters needed", const: "dummy" } }, required: ["_dummy"], additionalProperties: false } as const, },
  • Input schema for the 'get_status' tool, defining a dummy string parameter to satisfy MCP tool calling requirements despite no real inputs needed.
    inputSchema: { type: "object", properties: { _dummy: { type: "string", description: "No parameters needed", const: "dummy" } }, required: ["_dummy"], additionalProperties: false } as const,

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/Cam10001110101/mcp-server-ollama-deep-researcher'

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