Skip to main content
Glama

get_status

Check OBS Studio status to view active scene, streaming, and recording states. Use this tool to monitor your broadcast setup.

Instructions

Get current OBS status: active scene, streaming state, recording state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler logic for the 'get_status' tool, which fetches stream status, record status, and the current scene list from OBS.
    case "get_status": {
      const [stream, record, scenes] = await Promise.all([
        obs.call("GetStreamStatus"),
        obs.call("GetRecordStatus"),
        obs.call("GetSceneList"),
      ]);
      return ok({
        current_scene: scenes.currentProgramSceneName,
        streaming: stream.outputActive,
        stream_timecode: stream.outputTimecode ?? null,
        recording: record.outputActive,
        recording_paused: record.outputPaused,
        record_timecode: record.outputTimecode ?? null,
      });
    }
  • The registration definition for the 'get_status' tool, including its name, description, and empty input schema.
    {
      name: "get_status",
      description:
        "Get current OBS status: active scene, streaming state, recording state.",
      inputSchema: { type: "object", properties: {} },
    },
Behavior3/5

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

With no annotations provided, description must carry full behavioral burden. 'Get' implies read-only operation, establishing safety profile. However, lacks disclosure of return format/types (booleans vs strings), potential error states, or caching behavior. Meets minimum expectations but provides no additional behavioral context beyond the implied read-only nature.

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?

Single sentence, nine words. Action-verb front-loaded with colon-separated enumeration of status components. No redundancy, tautology, or filler. Every word contributes essential information about tool capability.

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?

For a parameterless status retrieval tool without output schema, description adequately covers functional scope by enumerating the three specific status components returned. Could be improved by hinting at return structure or value types (e.g., boolean for states), but sufficient given low complexity.

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?

Input schema contains zero parameters. Per scoring guidelines, zero-parameter tools receive baseline score of 4. Description appropriately makes no parameter claims, requiring no semantic clarification beyond what the empty schema already conveys.

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

Purpose5/5

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

Excellent specificity: verb 'Get' + resource 'OBS status' + explicit scope enumeration ('active scene, streaming state, recording state'). Effectively distinguishes from action-oriented siblings like start_streaming/stop_recording and from list-oriented siblings like list_scenes by emphasizing current/active state retrieval.

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

Usage Guidelines3/5

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

No explicit when-to-use guidance or alternative recommendations provided. However, the enumeration of returned status fields implicitly signals this is for monitoring current state vs. the mutation tools (set_scene, start_streaming). Adequate but lacks explicit guidance.

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/LarsCanGit/OBS-MCP'

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