Skip to main content
Glama

Tribunal TRF4: Certidão Negativa Cível e Criminal

Server Details

Tribunal TRF4: Certificate Negativa Cível e Criminal, official-source lookup. Platform-hosted, pay p

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/tribunal_trf4_certidao-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 7 of 7 tools scored. Lowest: 3.3/5.

Server CoherenceB
Disambiguation3/5

The tools are mostly individually distinctive, but there are a few fuzzy boundaries: `authenticate` and `connect` both deal with authentication/connection state, and `marketplace`/`toolkit_info` both expose catalog/current-toolkit information. The certificate query tool is clearly unique, but the platform tools could still lead to misselection.

Naming Consistency2/5

The naming is mostly lowercase/snake_case, but the conventions are mixed: bare verbs (`authenticate`, `connect`), noun-based names (`marketplace`, `toolkit_info`), and a long Portuguese compound (`tribunal_trf4_certidao_consultar`) do not follow a consistent verb_noun pattern. The style is readable but not predictable.

Tool Count3/5

Seven tools is not inherently too many, but the set is split: six tools are generic platform/infrastructure utilities and only one implements the stated legal-domain purpose. The count feels like a small platform package with a single domain add-on rather than a focused certificate service.

Completeness4/5

The core flow is covered: the agent can authenticate, check connection status, discover catalog options, and run the actual TRF4 certificate consultation. The main gaps are minor platform/lifecycle issues such as no explicit logout/disconnect and no removal/uninstall operation, and the legal side is represented by only one one-shot consultation tool.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

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

The description discloses side effects: it modifies the server config (for permanent) or establishes a session. It notes the persistence difference ('permanent, non-expiring' vs 'session-only'). It does not explicitly mention idempotency, but the annotation (idempotentHint: true) is consistent—calling multiple times just sets a token. No contradictions with annotations.

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

Conciseness4/5

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

The description is a single, dense sentence but remains readable and informative. It covers all necessary information without excessive wordiness, though breaking it into shorter sentences could improve clarity.

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 annotations and schema, the description adds sufficient context about the authentication flow. It omits output details (e.g., success message), but for an auth tool, the primary outcome (token or link) is implied. The description is complete enough for an agent to use it correctly.

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

Parameters5/5

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

The single optional parameter 'token' is well explained. The description states that calling without args retrieves the link, and calling with the token (JWT) after pasting completes the login. This fully clarifies the parameter's role and usage.

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?

The description clearly states the tool's purpose: authentication for IDE agents via browser login and token retrieval. It explicitly outlines the two usage modes (permanent config header vs session-only token) and distinguishes itself from sibling tools like 'connect' or 'marketplace'.

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?

It provides concrete instructions: either add the token to the server config as an Authorization header for a permanent connection, or paste it for a session. It also explains how to call with or without the token parameter, and implies the recommended approach ('Best: add to config').

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

connectA
Read-onlyIdempotent
Inspect

Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful context about the two possible return states (authenticated vs. missing credentials), which goes beyond the annotations. However, it doesn't describe the exact structure of the response or any potential side effects, though none are expected given the hints.

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 two sentences, front-loaded with the core purpose, and every sentence adds value. It efficiently explains the two possible outcomes without any fluff.

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 has no parameters, no output schema, and strong annotations (readOnly, idempotent, non-destructive), the description is complete enough. It explains the two states and what URLs are returned. It could mention the format of the URLs or the exact response structure, but for a simple status check, this is sufficient.

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?

The tool has zero parameters, and schema description coverage is 100% (vacuously). The description doesn't need to explain parameters, and it provides meaningful context about the output states, which is the main value. Baseline for 0 params is 4, and the description meets that.

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 returns connection status and URLs, and distinguishes between the authenticated state and the missing-credentials state. It doesn't explicitly name sibling tools, but the purpose is specific enough to differentiate from siblings like authenticate or toolkit_info.

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?

The description implies when to use this tool (to check connection status and get URLs when credentials are missing), but it doesn't explicitly state when not to use it or mention alternatives. The context is clear but lacks explicit exclusions or alternative tool references.

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

marketplaceBInspect

The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior4/5

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

No annotation contradiction found; the description actually expands on the annotations' implications. The readOnlyHint: false is honored and enriched with detail that invoke triggers one-off installs, returns connect/checkout links for auth/payment, and that writes require owner/admin. The description discloses permissions, the point-in-time behavior of invoke, the link-return-and-retry pattern, and that installed_in_toolkit vs installed_in_workspace flags differ — all useful behavioral context an agent can't infer from the schema alone.

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 information-dense and every sentence does add value, but it's a single unbroken paragraph that mixes catalog discovery, invocation semantics, auth/billing nuances, prompt-library functionality, and permission restrictions. The 'KEY:' aside is a useful emphasis technique, but the lack of scannable structure (bullets, sentence cases) means an agent must grimly parse the whole statement to find the relevant behavior. It's compact, but it's compaction over structure.

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

Completeness3/5

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

For a high-complexity, multi-action tool with 23 parameters and no output schema, the description covers the flagship flows well — including the non-obvious 'invoke returns a connect link then you retry' pattern and the permission model. But completeness for this tool is measured across its breadth (actions covered: search/describe/install/invoke/list_tools/subscribe/cancel/report_bug/request_mcp and all four prompt-library flows), and in that breadth, some flows are papered over: report_bug, resume, and request_mcp get name-checks only, with no parameters or response behavior described. Decent breadth, but the actions are of very different granularity and the descriptions don't scale to the tool's scope.

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

Parameters2/5

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

Schema coverage is 0% and the description is the ONLY source of parameter meaning, yet it references only action, query, mcp_id, and tool_id conceptually — leaving 19 of 23 parameters (including structured types like arguments, prompt_targets, cancel_reason, conversation) completely undocumented. The description also never maps which fields pair with which action values (e.g., which params describe expects). With zero schema description and zero parameter guidance, agents must guess at the field composition rules, which is a significant gap for a 23-parameter tool.

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 this is the official mcp.ai marketplace for discovering and running MCPs, with a stated core flow (search → describe → invoke). However, the tool bundles 14 different actions and two distinct subsystems (billing + prompt library), which fragments the 'resource' being described. It's specific and goes well beyond the tautological name, though it could more crisply state 'lists/installs/manages MCPs and prompts' as a single-sentence purpose.

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?

The description provides strong usage guidance for when to use invoke vs install ('prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT'), and it excludes billing/feedback/request actions. However, the guidance is buried in a dense monologue rather than structured, and since this is a single tool dispatching on an 'action' enum, the 'vs alternatives' comparison is largely internal to the description itself. Some alternatives (subscribe vs cancel) are implied in the billing flow but not explicitly compared.

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

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior4/5

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

Annotations already provide readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description adds that the conversation array should be included for reproduction, which is useful behavioral context beyond the annotations. It does not contradict annotations.

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 two sentences, front-loaded with the primary purpose and then a specific instruction. No extraneous words.

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?

The tool is simple with only 3 parameters and no output schema. The description covers the essential usage and the key instruction for reproduction. It lacks details about expected outcomes, but that is acceptable given the low complexity and annotation coverage.

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

Parameters3/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 explicitly instructs to include the conversation array, giving purpose to that parameter. However, it does not clarify the meaning of 'message' or 'context' beyond the implicit purpose, leaving some gap.

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?

The description clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' This uses specific verbs and a clear resource, and it distinguishes itself from the sibling tools (which are unrelated, like authenticate or marketplace).

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 gives a practical guideline to include the conversation array for reproduction, which is useful context for when to use this tool. However, it does not explicitly mention when not to use it or alternative tools, though none are obvious among siblings.

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

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds that it shows 'current' versions, implying live data, but does not disclose any additional behaviors such as network calls or caching. This meets the baseline for a simple read-only 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 a single, efficient sentence that directly states the purpose without fluff. It is front-loaded and every word earns its place.

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 simplicity (no parameters, no output schema, and clear annotations), the description adequately covers what the tool does. It could mention the exact format of version output, but that is not critical for a getter tool. It is complete enough for an agent to decide usage.

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?

The tool has zero parameters, so the schema is fully described (100% coverage). The description adds no parameter-level detail because none exists.okay. Per rubric, when 0 params, baseline is 4, which is appropriate.

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?

The description uses a specific verb 'show' and clearly identifies the resource as 'current MCP platform and adapter versions.' It is distinct from siblings like 'toolkit_info' and 'authenticate' by focusing on version information. No ambiguity.

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 clearly implies the tool is used to retrieve version information, and it is a standalone operation with no apparent alternatives among siblings. It does not explicitly state 'use when you need version info' or exclude other tools, but the purpose is self-evident.

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

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds value by specifying exactly what information is returned (installed MCPs, connection status, accounts, catalog tool counts), which is useful behavioral context beyond the annotations.

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 a single, well-structured sentence that front-loads the core purpose ('Returns the current toolkit state') and then lists the key output categories. Every word earns its place; there is no fluff or repetition.

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

Completeness5/5

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

For a simple, zero-parameter, read-only status tool with rich annotations, the description is complete. It enumerates all the relevant output dimensions (installed MCPs, connection status, accounts, catalog tool counts), so an agent knows what to expect even without 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?

The tool has zero parameters and schema description coverage is 100%, so the baseline is 4. There are no parameter semantics to clarify, and the description appropriately focuses on the return value instead.

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?

The description uses a specific verb ('Returns') and names a precise resource ('current toolkit state'), then enumerates the contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This clearly distinguishes it from siblings like connect, authenticate, and show_version.

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 makes the tool's context clear: use it to inspect the current toolkit state. It does not explicitly name alternatives or exclusions, but for a zero-parameter status tool the intended usage is obvious and no conflicting sibling behavior is suggested.

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

tribunal_trf4_certidao_consultarA
Read-onlyIdempotent
Inspect

Tribunal TRF4: Certidão Negativa Cível e Criminal, consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).

ParametersJSON Schema
NameRequiredDescriptionDefault
cpfNo
cnpjNo
tipoYes
birthdateNo
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds context beyond these: no platform credentials needed, cost implications (prepaid credits), and LGPD data-control responsibilities. It clarifies the data is not confidential, which is valuable behavioral information.

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

Conciseness4/5

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

The description is a single paragraph of four sentences, front-loaded with the tool's purpose. It includes payment and LGPD details that are relevant to usage, without excessive verbosity or redundancy.

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

Completeness2/5

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

Despite good annotations, the tool has 4 parameters with no schema descriptions and no output schema. The description fails to clarify parameter constraints, required values for 'tipo', or return format. The legal and commercial context is helpful but does not compensate for missing parameter and output information.

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

Parameters2/5

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

Input schema has 4 parameters with 0% description coverage, and the description does not explain the meaning or format of 'cpf', 'cnpj', 'tipo', or 'birthdate'. The only hint is the certificate type (civil/criminal) implied by 'tipo', but this is not explicit and no parameter details are given.

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?

The description clearly states the tool performs a query for 'Certidão Negativa Cível e Criminal' from the TRF4 tribunal via official sources, using specific verbs like 'consulta' and 'fontes oficiais'. Sibling tools are unrelated platform utilities, so this is unambiguous.

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?

The description provides useful context (paid per query, prepaid credits, no platform credentials) but does not explicitly state when to use this tool over alternatives or when not to use it. There is no mention of exclusions or alternative tools, only implied usage for obtaining Brazilian official certificates.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Issues civil, electoral, or criminal certificates from Brazilian Federal Regional Courts (TRF) using CPF/CNPJ and region, via a hosted, read-only MCP server.
    MIT
  • -
    license
    -
    quality
    -
    maintenance
    Consulta certidões negativas cíveis e criminais do TRF1 em fonte oficial, por meio de uma ferramenta de leitura.
  • -
    license
    -
    quality
    C
    maintenance
    MCP server for querying official first-instance court certificates from the Tribunal de Justiça do Rio Grande do Sul (TJRS) in a read-only manner. It provides one tool to perform consultation via official sources, works with any MCP-compatible client, and charges per-use with prepaid credits.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.