JMeter Docs
Server Details
Apache JMeter community documentation, conversion tools, linters, and calculators for AI agents.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- QAInsights/docs.jmeter.ai
- GitHub Stars
- 3
TDQS
Each tool targets a distinct workflow: docs retrieval, JMX generation, load modeling, linting, error lookup, distributed planning, and OS tuning. The only mild overlap is between search_jmeter_docs and get_jmeter_page, but their purposes are complementary enough for an agent to choose correctly.
All tool names use a consistent snake_case verb_noun pattern with clear verbs like get, lookup, search, convert, calculate, lint, plan, and tune. The naming style is uniform and predictable across the entire set.
Ten tools is well within the ideal range for a domain-specific documentation and JMeter assistance server. Each tool covers a meaningful sub-area without excessive fragmentation or redundancy.
The set covers the full JMeter workflow: documentation lookup, test plan generation from curl/HAR, workload calculation, snippet linting, JSR223 recipes, property lookup, error troubleshooting, distributed testing, and OS tuning. No obvious dead ends or critical missing operations for the stated purpose.
Available Tools
10 toolscalculate_workload_modelCalculate Workload Model & Little's Law SizingAInspect
Compute required thread concurrency, pacing delays, ramp-up schedules, and JVM heap recommendations based on target RPS/TPS and SLA response times using Little's Law.
| Name | Required | Description | Default |
|---|---|---|---|
| targetRps | Yes | Target throughput in requests / transactions per second (RPS/TPS). | |
| thinkTimeMs | No | Think time / user pause between requests in milliseconds (default: 0). | |
| safetyFactor | No | Headroom safety buffer multiplier (default: 1.25 = 25% buffer). | |
| avgResponseTimeMs | Yes | Expected average response time in milliseconds. | |
| testDurationMinutes | No | Steady-state test duration in minutes (default: 10). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry behavioral disclosure. It does communicate that the tool performs a calculation and names the computed outputs, which implies a pure analysis operation with no destructive side effects. Still, it does not state the return format, underlying assumptions, or whether results are estimates.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, tightly packed sentence with no filler. The primary action and result are front-loaded, and every phrase conveys useful scope information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core purpose and parameter relationships, and there is no output schema to rely on. However, it omits the shape of the returned workload model, the units of some outputs, and explicit guidance on when this tool is preferable to sibling planning tools, leaving moderate ambiguity for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents all five parameters with 100% coverage, so the baseline is 3. The description adds modest context by linking targetRps and avgResponseTimeMs to Little's Law, but it does not meaningfully elaborate on thinkTimeMs, safetyFactor, or testDurationMinutes beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Compute') and a concrete resource set: thread concurrency, pacing delays, ramp-up schedules, and JVM heap recommendations. It clearly distinguishes this from the JMeter/documentation-focused sibling tools by stating the exact calculation scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case: sizing a load model when target RPS/TPS and SLA response times are known. However, it does not explicitly state when not to use it or compare against adjacent tools like plan_distributed_testing, which may also be relevant for load-test planning.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_curl_or_har_to_jmxConvert cURL or HAR to JMeter JMX Test PlanAInspect
Convert one or more cURL commands or HAR (HTTP Archive 1.2) JSON traces into a valid, production-ready Apache JMeter .jmx test plan XML with HTTP Request Defaults, Header Managers, Cookie Managers, timeouts, and assertions. Supports GET, POST, PUT, DELETE, PATCH, and RFC 9838 QUERY methods.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | cURL command string (single, multiline, or batch) or HAR 1.2 JSON text (max 1MB). | |
| threads | No | Thread concurrency / virtual users (default: 1). | |
| loopCount | No | Loop count (-1 for infinite, default: 1). | |
| testPlanName | No | Name of the JMeter Test Plan (default: "cURL Converted Plan"). | |
| rampUpSeconds | No | Ramp-up time in seconds (default: 1). | |
| durationSeconds | No | Test duration in seconds (0 = disabled, default: 0). | |
| parameterizeAuth | No | Extract Bearer token into ${AUTH_TOKEN} variable (default: true). | |
| parameterizeHost | No | Extract common host into HTTP Request Defaults and ${BASE_URL} (default: true). | |
| includeAssertions | No | Add HTTP 200/201/204 Response Code assertions (default: true). | |
| filterStaticAssets | No | Filter out images/css/fonts when parsing HAR (default: true). | |
| includeCookieManager | No | Include HTTP Cookie Manager (default: true). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the behavioral transparency burden. It discloses the structure of the generated JMeter plan and supported HTTP methods, but it does not explain failure behavior, how the output is returned, or how sensitive auth headers are handled. The non-destructive conversion nature is reasonably evident, but some behavioral gaps remain.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. It front-loads the primary action and inputs, then packs output structure and supported methods into a compact list. Every clause contributes useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the rich parameter schema and clear purpose, the description sufficiently covers the core contract: what inputs are accepted, what artifact is produced, and which JMeter components are included. It could be stronger with a note about output delivery or limitations, but it is not missing critical information for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with all 11 parameters documented, so the baseline is 3. The tool description adds high-level context about generated JMeter elements and supported methods, but it does not need to restate parameter details because the schema already provides thorough descriptions and defaults.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Convert') and clearly names the inputs ('cURL commands or HAR JSON traces') and output ('Apache JMeter .jmx test plan XML'). It also lists generated JMeter elements and supported HTTP methods, making the tool's purpose unambiguous and distinct from sibling utility tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly establishes the conversion use case: converting HTTP capture formats into a JMeter test plan. It does not explicitly discuss when not to use the tool or compare against alternatives, but no sibling directly offers the same conversion capability, so the context is clear enough for an agent to route appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_jmeter_pageRead a JMeter documentation pageAInspect
Fetch the full markdown text of one docs.jmeter.ai page. Accepts the page URL (e.g. https://docs.jmeter.ai/topics/api-load-testing/) or a bare path (e.g. topics/api-load-testing).
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Page URL or path, e.g. https://docs.jmeter.ai/user-manual/functions/ or user-manual/functions |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses that the tool returns full markdown text, not a summary or rendered page, and that it accepts either a full URL or a bare path. It does not mention error cases or rate limits, but for a simple read-only fetch these are not critical.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tight sentences: the first states the action and result, the second gives input formats with concrete examples. Every sentence earns its place and the core behavior is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter read-only fetch tool with no output schema, the description provides all necessary selection and invocation details: what is returned, what to pass, and the accepted input formats. Nothing essential is missing for correct use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single url parameter is already fully described in the schema with both accepted formats and an example, so the description adds little beyond another example. This matches the high schema coverage baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action and resource: 'Fetch the full markdown text of one docs.jmeter.ai page.' This distinguishes it from sibling search_jmeter_docs by emphasizing full page content rather than search results. The example input formats further clarify the tool's exact scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly indicates the tool is for retrieving a complete documentation page when the URL/path is known, which contrasts with searching. It does not explicitly name alternatives or provide when-not-to-use guidance, but the context is unambiguous enough for an agent to select it correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_jsr223_recipeGet Verified JSR223 Groovy RecipeAInspect
Fetch production-ready, performant Groovy scripts for JMeter JSR223 samplers, preprocessors, and postprocessors (e.g., JWT parsing & expiration, HMAC-SHA256 signing, dynamic header injection, nested JSON array extraction, custom CSV failure logging).
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Filter by keyword or topic (e.g. "jwt", "hmac", "header", "json", "csv", "logging"). If omitted, returns all recipes. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. 'Fetch' clearly signals a read-only retrieval operation with no side effects, and the examples convey what kind of content will be returned. It does not detail return formatting or verification criteria, but for a simple fetch tool this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the action and resource first, then adds illustrative examples. Every part contributes useful context, and there is no redundant or filler wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one optional parameter and no output schema, the description covers the purpose, scope, and relevant examples. It could explicitly state the return format or that recipes are usable code snippets, but the overall context is sufficient for an agent to invoke this correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents the single optional 'query' parameter with 100% coverage, including examples and the behavior when omitted. The description restates some example topics but adds no new parameter semantics beyond what the schema provides, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Fetch') and resource ('production-ready, performant Groovy scripts for JMeter JSR223 samplers, preprocessors, and postprocessors'), with concrete examples like JWT parsing and HMAC signing. It clearly distinguishes this tool from siblings such as search_jmeter_docs, lint_jmx_snippet, and lookup_jmeter_property.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: when a JMeter JSR223 recipe is needed for common scripting tasks. It does not explicitly name alternatives or say when not to use it, but the intended use case is unambiguous enough for an agent to select it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lint_jmx_snippetLint JMX Test Plan SnippetAInspect
Validate a JMeter test plan XML string or snippet against best practices and performance anti-patterns (e.g., active GUI listeners, legacy BeanShell, uncompiled JSR223, missing timeouts, zero ramp-up, Thread.sleep in scripts).
| Name | Required | Description | Default |
|---|---|---|---|
| jmxContent | Yes | JMX XML string or test plan snippet to analyze. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does well by listing specific behavioral categories: active GUI listeners, legacy BeanShell, uncompiled JSR223, missing timeouts, zero ramp-up, and Thread.sleep in scripts. It does not disclose return format or side effects, but the linting behavior is clearly characterized.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One front-loaded sentence with no filler. The verb and resource appear immediately, and the anti-pattern examples are compactly clustered at the end, so every phrase contributes to scoping the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter tool with no output schema, the description covers the input and the nature of analysis well enough for selection and invocation. It would be more complete if it stated what kind of result is returned (e.g., a list of violations or a pass/fail response), but this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description for jmxContent fully explains that it is the JMX XML string or snippet to analyze, and the tool description essentially repeats the same meaning. With 100% schema description coverage, the description adds no significant parameter-level semantics beyond the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Validate') and resource ('JMeter test plan XML string or snippet') and enumerates concrete anti-patterns it checks. This clearly separates it from sibling tools like convert_curl_or_har_to_jmx or search_jmeter_docs, none of which perform validation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the right use case: when an agent has JMX content and needs best-practice or anti-pattern checking. It does not explicitly name alternatives or state when not to use it, so usage guidance is only implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_error_playbookLookup Error & Exception Diagnostic PlaybookAInspect
Get immediate root causes, OS/JVM config fixes, and remediation steps for common JMeter exceptions (e.g. "BindException", "SocketTimeoutException", "OutOfMemoryError", "NoHttpResponseException", "SSLHandshakeException", "401/403 after recording").
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Error message, exception name, or status (e.g. "bindexception", "heap", "timeout", "401"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and clearly signals a read-only lookup behavior via 'Get'. It also discloses the scope ('common JMeter exceptions') and the type of content returned: root causes, config fixes, and remediation steps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One focused sentence front-loads the purpose and includes concrete examples that help an agent form valid queries. Every part of the description contributes to understanding the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter lookup tool with no output schema, the description is complete: it tells the agent what the tool returns, what inputs are expected, and in which error situations it is useful. No additional context is needed to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the query parameter is already well documented in the input schema with examples. The tool description reinforces accepted inputs but adds no meaningful parameter semantics beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and names the exact resource: root causes, OS/JVM config fixes, and remediation steps for JMeter exceptions. It is clearly differentiated from siblings like lookup_jmeter_property by focusing on error playbooks rather than generic JMeter properties.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The examples of exceptions imply when to use it: when encountering JMeter errors such as BindException or SocketTimeoutException. However, it does not explicitly state when not to use it or mention alternative tools like search_jmeter_docs or tune_linux_os.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_jmeter_propertyLookup JMeter Tuning PropertyAInspect
Search or lookup curated JMeter properties (e.g. "httpclient4.idletimeout", "jmeter.save.saveservice.*", "remote_hosts", "summariser"). Returns category, defaults, and recommendations.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Property name or keyword to search (e.g. "ssl", "timeout", "jtl", "influxdb"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It does state what the tool returns ('category, defaults, and recommendations'), which is helpful for a read-only lookup. However, it does not reveal response shape, whether matching is exact or fuzzy, or how missing properties are handled.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no redundancy. The action and target are front-loaded, examples provide high-density clarification, and the output summary is concise. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter lookup tool with no output schema and no annotations, the description sufficiently covers the tool's purpose, query semantics, and return contents. Nothing critical is missing for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides a clear description for query with 100% coverage. The tool description adds complementary value by giving real example property names and keywords, which illustrates both the expected format and the breadth of searchable content.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Search or lookup') and a specific resource ('curated JMeter properties'), backed by concrete examples. The combination of 'properties' and the returned fields ('category, defaults, and recommendations') clearly distinguishes it from siblings like search_jmeter_docs and lookup_error_playbook.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool through its examples and phrasing, but it never explicitly says when to prefer this over alternatives or lists exclusions. An agent must infer that this is for property lookups versus other JMeter-related search tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_distributed_testingPlan Distributed Testing Ports & Firewall RulesAInspect
Generate Master-Worker RMI port assignments, user.properties, CLI commands, firewall/security group rules, and Docker Compose manifests for distributed load testing.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Sample transmission mode (default: "StrippedBatch"). | |
| workerIps | Yes | Comma or space-separated list of worker / injector IP addresses (e.g. "10.0.1.10, 10.0.1.11, 10.0.1.12"). | |
| disableSsl | No | Disable RMI SSL (default: false). Only for isolated labs. | |
| serverPort | No | RMI registry port on workers (default: 1099). | |
| environment | No | Target infrastructure environment for firewall/CLI rules (default: "aws"). | |
| controllerIp | No | Controller / Master node IP or hostname (default: "10.0.0.5"). | |
| clientRmiLocalPort | No | Pinned controller callback port (default: 60000). | |
| serverRmiLocalPort | No | Pinned worker engine port (default: 50000). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It lists the generated artifacts but does not state whether the tool writes files, returns text, requires network access, or has any side effects. For a tool with no output schema or annotations, this is a significant transparency gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single well-structured sentence that front-loads the action and then lists the concrete deliverables. There is no filler or repetition of schema details, making it appropriately concise and scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description, combined with the 100% schema coverage, is adequate for understanding what the tool does and which inputs it expects. However, with no output schema and no annotations, the lack of detail about return format or side effects leaves the agent with some uncertainty about what invoking the tool will actually produce.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so parameter meaning is already fully documented in the input schema. The description adds context about the kind of outputs the parameters influence, but it does not compensate for anything missing in the schema, which is unnecessary here.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Generate') and names a concrete resource: Master-Worker RMI port assignments, user.properties, CLI commands, firewall/security group rules, and Docker Compose manifests. This clearly distinguishes it from sibling tools focused on JMeter lookup, linting, or OS tuning.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'for distributed load testing' gives a clear use context, and the title narrows the intended scenario to distributed testing infrastructure planning. It does not explicitly name alternatives or exclusions, but no sibling tool appears to perform the same planning function, so the context is sufficient for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_jmeter_docsSearch JMeter documentationAInspect
Search the Apache JMeter documentation on docs.jmeter.ai. Returns the most relevant pages with titles, URLs, and snippets. Use for any question about JMeter test plans, components, functions, properties, distributed testing, reports, or troubleshooting.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query, e.g. "how to correlate dynamic values" or "thread group ramp up" |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description carries the burden of behavioral transparency. It discloses that the tool is a search over a specific site and returns relevant pages with snippets. It does not mention potential limitations, result count, ordering, or side effects. For a search tool, the core behavior is adequately described, but richer context is missing.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loads the action and resource, and then adds return-value details followed by usage context. Every sentence earns its place with zero redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter search tool with no output schema, the description is complete: it states where the search happens, what the results contain, and when to use the tool. No critical information is missing for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the query parameter already includes an explanation with examples ('how to correlate dynamic values' or 'thread group ramp up'). The tool description adds no additional parameter semantics, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Search') and a specific resource ('Apache JMeter documentation on docs.jmeter.ai'), and details the output ('pages with titles, URLs, and snippets'). This makes the tool's function unmistakable and distinct from siblings like get_jmeter_page, which presumably retrieves a specific page rather than searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear when-to-use guidance: 'Use for any question about JMeter test plans, components, functions, properties, distributed testing, reports, or troubleshooting.' However, it does not mention alternatives or exclusions, such as directing exact property lookups to lookup_jmeter_property or error-specific lookups to lookup_error_playbook. The context is clear, but no alternatives are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tune_linux_osLinux Kernel & OS Tuning for Load InjectorsAInspect
Generate production sysctl.conf, limits.conf, systemd overrides, and Docker/K8s configs tuned for high-concurrency JMeter load testing (fixing ulimit nofile, BindException port exhaustion, somaxconn backlog, and JVM swappiness).
| Name | Required | Description | Default |
|---|---|---|---|
| role | No | Machine role: "injector" (JMeter client) or "target_sut" (default: "injector"). | |
| ramGb | No | Host machine RAM in GB for TCP buffer sizing (default: 16). | |
| concurrency | No | Target concurrent connections/threads (default: 10000). | |
| trafficType | No | Traffic profile (default: "http_churn"). | |
| targetDistro | No | Linux distro or container target (default: "ubuntu_debian"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the entire burden. It clearly states the artifacts that will be generated and the issues addressed, but it does not disclose whether the tool writes files to the system or simply returns configuration text, nor does it mention permission requirements or output format. This leaves some ambiguity about side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that names the action and resources immediately, then adds a compact parenthetical of concrete problems solved. There is no filler or repetition; every phrase contributes to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description lists the output artifacts and the target scenario, but since there is no output schema, it does not clarify whether the tool returns file contents, a structured bundle, or applies changes directly. Given five parameters and no annotations, this output-format gap is notable but the core functionality is still inferable from the description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and all parameter meanings are already documented in the schema with defaults and enum options. The description adds no parameter-specific guidance beyond the high-level outcome, which is acceptable but does not enhance understanding of how parameters influence the generated configs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Generate' and names the precise resources (sysctl.conf, limits.conf, systemd overrides, Docker/K8s configs) plus the tuning goal (high-concurrency JMeter load testing) and concrete problems it solves (ulimit, BindException, somaxconn, swappiness). This clearly separates it from all sibling tools, none of which focus on OS/kernel configuration generation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly communicates when to use it: when tuning a host for high-concurrency JMeter load testing with specific pain points like ulimit/no-file limits and port exhaustion. It provides clear context but does not explicitly state exclusions or mention alternative tools, though no sibling tool appears to be a direct alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
10 tool updates
- First observed
calculate_workload_model - First observed
convert_curl_or_har_to_jmx - First observed
get_jmeter_page - First observed
get_jsr223_recipe - First observed
lint_jmx_snippet - First observed
lookup_error_playbook - First observed
lookup_jmeter_property - First observed
plan_distributed_testing - First observed
search_jmeter_docs - First observed
tune_linux_os
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Drive OctoPerf load testing from any AI agent: import, edit, validate, run scenarios, read metrics.
AI-callable tools for API mocking, testing, monitoring, security, and automation.
500+ deterministic tools for AI agents: math, conversion, validation, hashing, encoding, date/time.
Utility tools for AI agents: hashing, text stats, validation, DNS, currency, GEO audits.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMonetizable AI agent tools - document parsing, text analysis, code generation, security scanning, format conversion, and more. 8 tools with HTTP API and MCP protocol support.MIT
- AlicenseNot gradedqualityDmaintenanceProvides documentation generation and analysis tools for AI agents, including JSDoc generation, README analysis, changelog generation, API documentation, and code comment analysis.24MIT
- AlicenseAqualityAmaintenance23 developer & data API tools for AI agents - IP/DNS/WHOIS/SSL lookups, web scraping & screenshots, text AI (summarize, translate, sentiment, grammar, redact), and dev utilities (hash, UUID, QR, JWT, cron, IBAN/VAT/email validation, breach check).23MIT
- AlicenseAqualityCmaintenanceAgent Toolbelt is an MCP server exposing 11 focused API tools for LLM agents — schema generation, text extraction, token counting, CSV conversion, Markdown conversion, URL metadata, regex builder, cron expressions, address normalization, color palettes, and brand kits. Each tool is a focused microservice with structured input/output, WCAG-scored color data, USPS address parsing, and multi-model to25361MIT