SEFAZ CE: IPVA
Server Details
SEFAZ CE: IPVA, official-source lookup. Platform-hosted, pay per query with prepaid credit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_ce_ipva-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ CE: IPVA
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 3.9/5 across 7 of 7 tools scored. Lowest: 3.2/5.
The tools are mostly distinct: authenticate, connect, marketplace, report_bug, show_version, toolkit_info, and sefaz_ce_ipva_consultar each have clear purposes. However, authenticate and connect both deal with connection/auth state, and marketplace's invoke/install/subscribe sub-flows could be confused with toolkit_info's state reporting, creating some ambiguity.
Naming is inconsistent: some tools use snake_case (sefaz_ce_ipva_consultar), some use single words (connect, marketplace), and others use underscore-separated words (report_bug, show_version, toolkit_info). There's no consistent verb_noun pattern, and the mix of styles makes the set feel ad hoc.
With 7 tools, the count is reasonable for a platform-level server that manages MCPs, auth, and one domain-specific query tool. It's slightly heavy because several tools (report_bug, show_version, toolkit_info) are meta/utility functions, but the count is still within a sensible range.
The server covers its core purpose (SEFAZ CE IPVA consultation) with a single query tool, but lacks obvious lifecycle operations like history, receipt, or multiple query types. The platform tools (marketplace, connect, authenticate) are fairly complete for managing MCPs, but the domain-specific surface is thin, leaving gaps for agents needing more than a single lookup.
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?
Annotations already indicate idempotent and non-destructive behavior. The description adds useful behavioral context by explaining the permanent vs. session-only login distinction and how the token is supplied. It does not mention security consequences or whether tokens are stored, but it gives enough beyond the annotations for safe use.
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, opening with the tool's purpose and audience, then giving the two usage paths. It is slightly run-on and could benefit from clearer sentence breaks, but every sentence contributes useful information and there is minimal fluff.
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 single-parameter auth tool with no output schema, the description covers the essential workflow: how to obtain the token, how to make it permanent, how to use it for a session, and what happens with no arguments. It lacks explicit response/return details, but the description sets expectations well enough 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 schema has only one optional string parameter with 0% description coverage, so the description must carry the meaning. It does: the token is a JWT pasted by the user for session-only login, while omitting the token obtains the login link. This sufficiently explains the parameter's role and value provenance.
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 authenticates to MCP.AI for IDE agents, with a specific process: log in, copy the token, and either configure it as a header or pass it as a parameter. This goes well beyond the tool name and distinguishes the authentication flow 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.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides concrete guidance on when to use each mode: permanent config header vs. session-only token pass, and explains that calling with no arguments returns the login link. It does not explicitly name alternative tools or say when not to use authenticate, but the usage context is clear and actionable.
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 indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safe read behavior is covered by annotations. The description adds useful detail about return values under different conditions (authenticated:true, empty pending[], connect_url), which is beyond annotations, but does not cover all potential side effects or rate limits. Thus, it adds moderate value.
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 compact two-sentence paragraph, front-loaded with the core purpose and then providing conditional outcomes. Every sentence adds value, with no redundancy or filler. This is exemplary conciseness.
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 no parameters, no output schema, and simple annotations, the description is sufficient to understand the tool's behavior. It explains the two main states (all connected vs credentials missing) without needing to detail return formats. Slight deduction for not mentioning pagination or further error cases, but for a status check tool, this is complete enough.
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)Skip, so there is nothing for the description to explain. The schema coverage is 100% (empty properties), meaning no ambiguity. The description focuses on the return semantics, which is appropriate. Hence, a baseline of 4 is warranted.
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 returns connection status and URLs, distinguishing it from siblings like 'authenticate' and 'show_version'. It specifies the verb 'returns' and the resource (connection status), but does not explicitly contrast with all siblings, so a small deduction.
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 checking connection status but does not explicitly state when to use it over alternatives like 'authenticate' or 'toolkit_info'. It provides no exclusions or alternative guidance, so it's adequate but not thorough.
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?
The description discloses important runtime behaviors well beyond annotations: invoke works even when the MCP is not installed, credential failures return connect links, paid tools return checkout links, and writes require workspace owner/admin. It also mentions installed_in_toolkit vs installed_in_workspace flags.
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 dense and front-loaded with the core identity and mission, immediately followed by the workflow. It is long, but most sentences earn their place; it could be improved with bullet structure, and a few examples are non-essential.
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 high complexity of 23 optional parameters, no output schema, and a multi-purpose dispatcher, the description covers a lot: core flows, permissions, edge cases, billing, and prompt library. It does, however, omit the resume action entirely and does not enumerate how every input property relates to each action.
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 carries a heavy burden, but it does not systematically map the 23 parameters to actions. It explains the core action flow and central parameters (action, query, mcp_id, tool_id, arguments) indirectly, yet leaves several fields such as resume, immediate, tier_slug, conversation, and prompt-related parameters largely undefined.
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 defines this as 'the official mcp.ai marketplace' and explains it is both a catalog of MCPs/tools and the way to run them. It distinguishes the primary search → describe → invoke workflow, while also covering the prompt library and auxiliary operations.
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 explicitly states when to use each mode: 'use install only to make an MCP PERMANENT', 'prefer invoke for a single/occasional use', and covers list_tools, subscribe/cancel, report_bug, request_mcp, and prompt-library tools. This gives the agent clear decision rules.
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 idempotent and non-destructive behavior, so the bar is lower. However, the description adds minimal behavioral transparency beyond the purpose. It does not mention any side effects, state changes, response format, or asynchronous behavior. The description only repeats the action and one instruction.
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 concise, consisting of two short sentences. It conveys the purpose and a key instruction without unnecessary fluff or repetition. The structure is clear and to the point.
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 absence of an output schema, the description need not explain return values. However, it does not sufficiently elaborate on parameter roles or any invocation constraints. It provides basic purpose and one instruction, but leaves the 'context' and 'message' parameters vague. This is a moderate level of completeness.
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 description mentions the 'conversation array' parameter but does not explain its exact format (though schema shows it's a string, not an array). It provides no explanation for 'context' or 'message' parameters. With 0% schema description coverage, the description fails to clarify parameter meanings or usage.
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: reporting bugs, missing features, or sending feedback. It uses the verb 'report' and specifies the resource (bug/feedback). It also distinguishes itself from sibling tools (authenticate, connect, marketplace, etc.) by its unique function.
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: when you have a bug, missing feature, or feedback. It also instructs to include the conversation array for reproduction, which is a practical guideline. It does not explicitly mention when not to use this tool, but the context is sufficient given the tool names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_ce_ipva_consultarBRead-onlyIdempotentInspect
SEFAZ CE: IPVA, 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 |
|---|---|---|---|
| placa | No | ||
| chassi | No | ||
| renavam | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, non-destructive, and the description adds valuable context beyond these: no platform credentials required, prepaid payment per query, data is not confidential, and LGPD responsibilities. This provides practical behavioral details (auth and cost model) that annotations do not cover, though it omits details like retry limits 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?
The description is relatively concise at four sentences and front-loaded with the primary purpose. However, it includes legal disclaimers (LGPD) that, while important, could be streamlined. Overall, it's adequately sized but could be tighter by moving legal/payment details to a separate field or appendix.
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 lack of an output schema and zero parameter documentation, the description is insufficiently complete. It fails to specify which combination of parameters is expected, how the response will be structured, or any constraints (e.g., format requirements). Legal and payment details are present but operational usage information is missing, making it hard for an agent to invoke the tool 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 description entirely ignores the three parameters (placa, chassi, renavam). With 0% schema description coverage, the description must compensate, but it offers no explanation of what these fields mean or how they relate to the query. The agent has no guidance on which parameters are required, optional, or how they interact, making effective invocation highly uncertain.
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: consulting IPVA information from SEFAZ CE via official sources. It explicitly uses a specific verb (consultar) and resource (IPVA in SEFAZ CE), and distinctly differentiates from sibling tools like authenticate, connect, and marketplace, which serve entirely different functions.
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 context about payment and hosting but offers no explicit guidance on when to use this tool versus alternatives. It does not mention any prerequisites, exclusions, or scenarios where another tool might be preferable. Only implies usage when IPVA data is needed, which is insufficient for an agent to decide among potentially similar consultation tools.
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=true, idempotentHint=true, and destructiveHint=false, so the agent knows it's safe and read-only. The description adds little beyond stating it shows versions, which is adequate for a simple read-only tool. It does not contradict annotations, so no flag.
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 sentence with no fluff, front-loaded with the verb 'Show', and clearly conveys the purpose. Every word earns its place; it is maximally concise.
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 simplicity (0 parameters, no output schema, but clear annotations), the description is complete enough. It covers the essential purpose without needing to describe return values or side effects. It could benefit from mentioning if it returns structured data, but that's minor.
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?
There are 0 parameters, and schema coverage is 100%, so the description does not need to document parameters. With no parameters, a baseline of 4 is appropriate; the description is sufficient for a parameterless tool.
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 shows the current MCP platform and adapter versions, which is specific and distinct from sibling tools like authenticate, connect, and marketplace. However, it could be more explicit in distinguishing from toolkit_info, which may also provide version-like information.
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 it should be used when needing version information, but it does not explicitly state when to use it versus alternatives or when not to use it. With no parameters or context, it's straightforward but lacks explicit guidance on when it's appropriate.
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 declare readOnlyHint, idempotentHint, and destructiveHint. The description adds specific behavioral detail about what information is returned (installed MCPs, status, accounts, tool counts), providing value beyond the annotations. No contradiction.
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 sentence that is concise, front-loaded with the main action, and includes all essential information without any filler. Every word 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?
Given the tool's simplicity (no parameters, no output schema, read-only), the description fully covers what the tool does and returns. It is complete for an agent to decide when to invoke it.
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 the baseline is 4. The description correctly focuses on the result, as there are no parameters to document.
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'), enumerating its contents: installed MCPs, connection status, connected accounts, and number of catalog tools. This distinguishes it from sibling tools like show_version or connect.
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 for when to use this tool: whenever an agent needs an overview of the toolkit's state. It does not explicitly mention alternatives or exclusions, but the read-only informational nature is evident.
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
- Alicense-qualityCmaintenanceA hosted read-only MCP server that enables querying IPVA (vehicle property tax) information from the official SEFAZ Bahia source, with prepaid credit-based usage and no platform credentials.MIT
- -license-qualityCmaintenanceMCP server for querying IPVA (vehicle tax) information from the official SEFAZ PB (Paraíba state) source, read-only, with prepaid per-query pricing.
- Alicense-qualityCmaintenanceEnables users to query official SEFAZ CE Cupom Fiscal Eletrônico (SAT) data through a hosted, read-only MCP server with prepaid per-query credits.MIT
- Alicense-qualityCmaintenanceEnables querying SEFAZ's centralized taxpayer registration (CCC) from the official source via a read-only tool. Pay-per-use with prepaid credits.MIT
Your Connectors
Sign in to create a connector for this server.