Prefeitura MG Uberaba: Certidão Negativa de Débitos
Server Details
Prefeitura MG Uberaba: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay p
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/pref_mg_uberaba_cnd-mcp
- GitHub Stars
- 0
- Server Listing
- pref_mg_uberaba_cnd
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.2/5 across 7 of 7 tools scored.
Each tool has a clear, distinct function, and the descriptions prevent overlap between them. However, the inclusion of six platform-level utilities alongside the single domain-specific tool (pref_mg_uberaba_cnd_consultar) creates a risk that an agent may select the wrong tool if it misinterprets the server's purpose.
Naming uses a mix of single-word verbs (authenticate, connect), noun phrases (marketplace, toolkit_info), and a long descriptive snake_case tool (pref_mg_uberaba_cnd_consultar). While all are lowercase and snake_case for multi-word names, the pattern is not uniform in terms of verb/noun structure or granularity.
The server has 7 tools, but only one directly relates to its stated purpose (certidão negativa de débitos). The other six are generic MCP platform utilities (authentication, marketplace, bug reporting, etc.) that seem out of scope, making the set over-weighted with irrelevant tools for the intended domain.
For the domain of issuing negative debt certificates, only a single consult operation exists. There are no supporting tools for managing queries, historical lookups, or other lifecycle steps. The platform tools do not contribute to domain coverage, leaving the surface minimal and potentially insufficient for real-world workflows.
Available Tools
7 toolsauthenticateAIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses behavioral aspects: it returns a link when called with no args, accepts a token for session login, and mentions config-based permanent connection. However, annotations already indicate idempotentHint=true and destructiveHint=false, but the description adds practical context about the two modes (session vs permanent). It does not contradict annotations. Slightly less than 5 because it doesn't detail what happens after successful auth (e.g., validation, response).
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, dense paragraph. It is somewhat long but each sentence adds critical info about the two authentication methods. It is front-loaded with the main purpose and then covers alternatives. Slightly verbose but not wasteful; could be split into bullet points for clarity, but it's acceptable.
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 tool's complexity (authentication flow with two modes) and that there is no output schema, the description covers the essentials: how to initiate, what to do with the token, and the permanent config option. It lacks details about potential error cases or what happens after successful token submission, but for a tool with a single optional parameter, it is fairly complete. Siblings like 'connect' and 'marketplace' are distinct, so no confusion.
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 coverage is 0% (no description in schema), but the description thoroughly explains the single parameter 'token': it is a JWT to paste for session-only login, and optional (call with no args to get the link). This fully compensates for the lack of schema description. Score 4 because it provides clear semantics beyond the schema's bare 'type: string'.
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 clearly states the tool's purpose: authentication for MCP.AI in IDE agents, providing a browser login link and accepting a token. It distinguishes itself from siblings like 'connect' and 'marketplace' by focusing specifically on authentication flow.
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?
Provides explicit guidance on when to use: for logging in via browser and copying the access token. It also gives alternatives: adding the token to config for permanent connection vs. pasting it here for session-only login. Clearly states when to call with or without args.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description aligns with those by purely reporting state. The description adds useful behavioral detail beyond annotations: exact return conditions such as authenticated:true, empty pending[], and connect_url for toolkit/install-level URLs.
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-loaded with the core purpose, and each sentence adds meaningful detail on the two possible connection states. There is no redundancy with the annotations or schema.
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 no-parameter, read-only status tool, the description covers the main outcome fields and two relevant scenarios. It does not explicitly describe a partial-credential state or name every return field, but the given conditions ('all providers connected' and 'credentials missing') provide sufficient operational context.
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 tool has zero parameters and the schema coverage is 100%, so there is no parameter info the description needs to add. The baseline of 4 applies because no parameters exist and the description correctly focuses on behavior rather than inventing param details.
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 and object ('Returns connection status and URLs') and clarifies the tool's role as a status/read-only endpoint. It also distinguishes behavior by credential state, making it easy to tell apart from sibling tools like 'authenticate', which presumably initiates the auth flow.
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 context: users should call it to check whether providers are connected and to obtain connect URLs when credentials are missing. It does not explicitly say 'do not use this to authenticate' or name alternative tools, so it lacks a full exclusion/alternative statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that invoke runs tools even if not installed (one-off), may return connect or checkout links, and that writes require workspace owner/admin—beyond what the annotations (readOnlyHint:false) indicate. It also explains the distinction between installed_in_toolkit vs installed_in_workspace and the prompt library's behavior, all without contradicting annotations.
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 lengthy but dense; every sentence adds value for a complex, multi-action tool. It is a single block without bullet points, which hurts scannability, but the flow is logical and there is no redundant or filler content. Given the tool's scope, the length is justified, though better structure would improve clarity.
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 large parameter set, no output schema, and many action branches, the description covers the essential workflows: discovery, invocation, installation, billing, and the prompt library. It explains edge cases like credential/auth requirements, wallet top-up, and owner/admin restrictions—sufficient for an agent to understand what to expect and how to proceed.
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?
With 23 parameters and 0% schema coverage, the description carries the burden of explaining the key action-driven parameters (action, mcp_id, tool_id, arguments, prompt fields) and how they fit the workflows. It does not document every parameter individually, but it explains the core ones and the defaults (e.g., action default 'search') through the narrative. This is adequate but not exhaustive, so a small deduction.
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 clearly states it is the official mcp.ai marketplace and explains its core functions—discovering, describing, and invoking MCP tools—while also covering the prompt library. It distinguishes itself from sibling tools by explicitly naming its actions and the flow (search → describe → invoke) that sets it apart from simpler tools like authenticate or show_version.
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?
Provides explicit guidance on when to use invoke vs. install (permanent vs. one-off), when to use search/describe for discovery, and how to handle connect/checkout flows. It also mentions alternatives like list_tools and subscribe, and distinguishes between marketplace actions and prompt-library actions, so an agent knows exactly when to choose this tool over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pref_mg_uberaba_cnd_consultarARead-onlyIdempotentInspect
Prefeitura MG Uberaba: Certidão Negativa de Débitos, 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).
| Name | Required | Description | Default |
|---|---|---|---|
| cpf | No | ||
| cnpj | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnly and idempotent annotations, the description discloses meaningful behavioral details: it is a paid consultation using prepaid credit, requires no platform credentials, accesses only public non-secret data, and places LGPD-related controller responsibility on the client. This materially clarifies what happens and the obligations involved.
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 compact and front-loaded with the core purpose, then adds relevant operational context about payment, confidentiality, and LGPD. A few phrases are slightly boilerplate or redundant, but every part contributes useful context.
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 read-only query tool, the description covers purpose, official source, payment, authentication expectations, and data confidentiality. The main gap is parameter behavior, especially because the schema provides no descriptions and there is no output schema to compensate.
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 has two unannotated string parameters, cpf and cnpj, with 0% description coverage and zero required parameters. The description does not explain whether one must be provided, whether both are allowed, which identifier applies in which scenario, or what formats are accepted. This makes correct invocation ambiguous.
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 clearly states the tool is a consulta (query) of a Certidão Negativa de Débitos (CND) from Prefeitura MG Uberaba, using an official source. This is specific enough to distinguish it from the generic sibling tools like authenticate, connect, marketplace, and report_bug.
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 usage context: no platform credentials are needed, queries are paid via prepaid credit, and only official non-confidential data is accessed. It does not explicitly name alternative tools or list exclusion cases, but the context is strong enough for correct selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false (mutating) and idempotentHint=true (safe to repeat). The description adds the useful guidance about including the conversation for reproduction but does not disclose any side effects (e.g., system notifications, rate limits) beyond that. No contradiction found.
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 one concise sentence that front-loads the purpose and provides a key usage hint. No wasted words.
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 tool has 3 parameters (one required, two with defaults) and no output schema, the description gives enough to get started but omits details about the 'context' parameter and how the 'conversation' string should be formatted (e.g., JSON array vs plain text). It also does not explain what happens after submission, but the low complexity keeps this from being a critical 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?
Schema description coverage is 0%, so the description must explain parameters. It explicitly mentions message (implicitly) and conversation (and how to use it), but context is unexplained. The description partially compensates but not fully, leaving context ambiguous.
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 clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' It is distinct from siblings like authenticate, connect, or show_version, and directly names the action and 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?
It implicitly tells when to use (when reporting issues/feedback) and gives a specific instruction to include the conversation array for reproduction. However, it does not explicitly mention alternatives or when not to use, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds no additional behavioral context beyond restating the tool's function, but given the tool's trivial nature, no further disclosure seems necessary.
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?
A single, concise sentence that conveys the entire purpose without filler. Perfectly proportionate to the tool's simplicity.
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 read-only version introspection tool with no parameters and no side effects, the description completely fulfills all necessary informational needs. No output schema is required, and the description covers everything an agent needs to know.
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 tool has zero parameters, so schema coverage is trivially 100%. Per the rubric, 0 parameters receives a baseline of 4, and there is nothing further the description needs to add.
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 ('Show') and clearly identifies the resource ('current MCP platform and adapter versions'). It is immediately clear what the tool does and is distinguishable from sibling tools without ambiguity.
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?
No guidance is given on when to use this tool versus alternatives. It does not mention use cases like 'check before connecting' or reference siblings (e.g., toolkit_info), leaving the decision to the agent without contextual support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive behavior. The description adds value by disclosing the specific state elements returned (installed MCPs, connection status, accounts, catalog counts), which is beyond the annotations. No contradictions. Slight deduction for not mentioning network behavior or response format.
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?
A single, information-dense sentence that front-loads the core purpose ('Returns the current toolkit state') and immediately enumerates the key data points. Every word earns its place; no 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 read-only informational tool with no parameters and clear annotations, the description provides sufficient context: it lists all expected return categories. It could be more explicit about output format or error behaviors, but such details are not critical given the tool's simplicity and the strong annotations.
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?
With zero parameters and 100% schema coverage, the baseline is 4. The description adds no parameter details, but none are needed since the tool takes no inputs.
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 ('Returns') and clearly identifies the resource ('current toolkit state') while enumerating the exact contents (installed MCPs, connection status, accounts, catalog tool counts). It is readily distinguishable from sibling tools like show_version or authenticate, which serve different purposes.
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 usage for inspecting state but provides no explicit 'when to use' or alternatives. It doesn't contrast with siblings like show_version, though the detailed return-value list gives strong contextual hints. Missing exclusions or direct alternative references keep it at a minimum-viable level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official negative debt certificates from Uberlândia, MG, Brazil via a single read-only tool, pay-per-use with prepaid credits.MIT
- -licenseNot gradedqualityCmaintenanceProvides read-only consultation of negative debt certificates (Certidão Negativa de Débitos) from the Juatuba city prefecture in Minas Gerais, Brazil, through a single official tool.
- -licenseNot gradedqualityCmaintenanceProvides a read-only MCP tool to consult official negative debt certificates from the municipality of Itaúna, MG, Brazil, with hosted pay-per-use access.
- AlicenseNot gradedqualityCmaintenanceEnables querying negative debt certificates from São Carlos city hall through an official source, with a single read-only tool and pay-per-use pricing.MIT
Your Connectors
Sign in to create a connector for this server.