Skip to main content
Glama

tabs_create_mcp

Create a new blank tab in the Firefox session group, returning its tab ID and the group's updated tab list. Call tabs_context_mcp first to identify the group.

Instructions

Open one more blank tab (about:blank) in the session tab group and report its id together with what the group now holds. It takes no arguments. The tab joins whichever Firefox window the group already occupies, or brings one of its own when the group is empty. Call tabs_context_mcp once first, so you know the group you are adding to, then put the id you were just given on a navigate to load something into it. Whatever you open is yours to clear away: close it with tabs_close_mcp the moment it stops being useful, and leave none of your own tabs behind when the task ends - keep one only when the user wants to look at it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.4/5.0
Behavior4/5

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

Discloses that it creates a tab and returns data, and notes the cleanup expectation. Does not mention potential side effects like focus changes or prerequisites, but the core behavior is transparent.

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

Conciseness3/5

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

The description is somewhat verbose, mixing workflow instructions and cleanup policy into the tool definition. While structured and logical, it could be more concise by separating generic guidance from the tool's core purpose.

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?

Provides enough context for an agent to use the tool correctly, including what it returns (id and group contents) and its relationship to other tools. Lacks exact output format, but that is not critical given the absence of an output schema.

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?

No parameters exist, and the description correctly states 'It takes no arguments.' Baseline score of 4 applies for zero parameters.

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?

Clearly states the tool's action: open a new blank tab in the session tab group and report its id and the group's contents. Distinct from siblings like tabs_close_mcp and tabs_context_mcp.

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

Usage Guidelines5/5

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

Explicitly instructs to call tabs_context_mcp first to know the group, then use navigate on the new tab id, and close it with tabs_close_mcp when no longer needed. Provides clear when-to-use and how-to-use guidance.

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