JUCESP: Ficha Cadastral Simplificada
Server Details
Simplified company registration sheet at JUCESP (by CNPJ, NIRE or name). Platform-hosted, no credent
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/jucesp_ficha-mcp
- GitHub Stars
- 0
- Server Listing
- JUCESP: Ficha Cadastral Simplificada
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.
The tools have significant overlap: 'authenticate' and 'connect' both handle login/connection status, while 'marketplace' and 'toolkit_info' both describe platform capabilities. The verbose descriptions further blur distinctions, making it hard for an agent to choose the right tool.
Naming is highly inconsistent: mixed languages (Portuguese 'jucesp_ficha_consultar' vs English 'authenticate', 'marketplace'), mixed verb/noun forms, and no clear pattern. The tool names range from imperative verbs to descriptive nouns without a unifying convention.
The count of 7 tools is within a reasonable range, but the set includes many generic platform tools (marketplace, report_bug, show_version) that are unrelated to the core JUCESP domain, making the count feel inflated relative to the actual purpose.
For a JUCESP company registry consultation, there is only one domain-specific tool (jucesp_ficha_consultar). The rest are generic platform utilities, so the tool surface is missing common operations like search, list, or update for the registry data, leaving significant gaps for the stated purpose.
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 important behavioral traits beyond the annotations: it notes establishing a permanent non-expiring connection via config, or a session-only login when the token is passed in. It also explains the response behavior for the no-args case ('to get the link'). Annotations are not contradicted, though it does not depth on side effects or error states.
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 block that front-loads the key action and then lays out two distinct usage paths. Every clause adds relevant operational detail. It is slightly wordy with the 'MCP.AI for IDE agents' extra framing, but it remains informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter, no-output-schema tool, the description covers the important workflow: how to obtain the token, how to store it permanently, how to pass it for a session, and how to retrieve the login link. It leaves out any explicit success/failure return details, but for this authentication tool the provided interaction flow is reasonably complete.
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 schema description coverage at 0%, this description carries the full burden of explaining the 'token' parameter. It provides real meaning: it is a JWT access token copied from the browser and used for session-only login via { token: '<jwt>' }. It could add more detail like syntax, expiry behavior, or whether the value is stored, but the core semantic is clear.
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?
Description clearly identifies the tool as authentication for MCP.AI IDE agents, with a concrete flow: log in, copy token, and authenticate via either a permanent header or a session-only token. It uses an active verb ('log in', 'authenticate') and specifies the resource (this server/connection), making it distinct from sibling tools like 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 explicit usage context: it explains the recommended permanent setup (add Authorization header) versus the temporary option (paste token as a parameter), plus the no-args call to get the login link. It does not explicitly contrast against sibling tools like connect, but it provides enough situational guidance for the agent to choose the right invocation.
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, destructiveHint=false, and idempotentHint=true. The description adds valuable context about the two distinct states (all connected vs missing credentials) and the corresponding return structure (authenticated:true vs connect_url). This goes beyond annotations by detailing the conditional behavior without contradicting them.
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 extremely concise at two sentences, with essential information front-loaded. Every sentence adds value: it states the primary output and explains conditional behavior. There is no redundant phrasing.
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 zero-parameter schema aquatic and no output schema, the description sufficiently covers what the tool returns and under which conditions. The tool is simple, and the description fully explains the behavior, especially compared to sibling tools.
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 schema provides no parameter details. The description does not need to explain parameters. It correctly omits any input details, earning the baseline of 4 per the rubric.
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: it returns connection status and URLs. It distinguishes itself from siblings like authenticate by focusing on status, not authentication actions. The specifics about conditionally returning URLs based on connection state add clarity.
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 explains the behavioral context (when providers are connected vs missing credentials) but does not explicitly advise when to use this tool over siblings such as authenticate. Usage is implied for checking connection status, but no direct alternatives or exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
jucesp_ficha_consultarARead-onlyIdempotentInspect
Ficha cadastral simplificada de uma empresa na JUCESP (dados de registro por CNPJ, NIRE ou nome). Hospedado pela plataforma, sem credenciais, 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 |
|---|---|---|---|
| cnpj | No | ||
| name | No | ||
| nire | No | ||
| login_cpf | No | ||
| login_senha | No | ||
| pkcs12_cert | No | ||
| pkcs12_pass | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read‑only, idempotent, non‑destructive operationches; the description adds further useful information: payment model, lack of credentials, and LGPC responsibility. This goes beyond the annotations, though it does not specify response format or error behavior. No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front‑loaded with the purpose, then states payment and data source. It is not overly long and is easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has multiple parameters and no output schema. The description gives the core purpose and cost model but omits clarification about the authentication parameters and the expected response. Since it is a simple query tool the idea is clear, but the missing parameter explanations reduce 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 clarifies that queries can be made by CNPJ, NIRE, or name, covering three of seven parameters. However, the authentication parameters (login_cpf, login_senha, pkcs12_cert, pkcs12_pass) are not mentioned at all, and the schema provides no descriptions (coverage 0%). The description fails to explain these parameters or whether they are required, leaving the agent with insufficient guidance.
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 this tool retrieves a simplified corporate registration record (ficha cadastral) from JUCESP, specifying the query keys (CNPJ, NIRE, or name). This distinguishes it from the sibling tools, which are unrelated (authentication, marketplace, version info).
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 explains the general context: hosted by the platform, no credentials required, prepaid credits per query. It also indicates the data source is official Brazilian records. However, it does not explicitly state when to prefer this tool over alternatives (though no alternatives exist among siblings) nor when not to use it.
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?
Beyond annotations, the description discloses key behaviors: 'invoke works even when the MCP is NOT installed', returns a connect link for missing credentials, and a checkout/top-up link for empty wallets. It also states that 'Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin.' This is rich, actionable context with 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?
The description is thorough but long, with multiple paragraphs and many clauses packed into single sentences. It is front-loaded with the core purpose, but the length reduces clarity and could be structured with bullet points or sub-sections to improve scannability.
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 tool with 14 actions, 23 parameters, and no output schema, the description covers the full operational workflow, including auth requirements, one-off vs permanent install, billing/credential handling, and the prompt library. This is exceptionally complete context for an agent to select and invoke this 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?
With 23 parameters and 0% schema description coverage, the description must compensate but does not systematically explain most parameters. It mentions action names and implies tool_id/arguments for invoke, but leaves many parameters (limit, immediate, prompt_body, tier_slug, cancel_reason, etc.) unexplained, giving the agent insufficient per-parameter guidance.
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 role as 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It uses specific verbs like search, describe, invoke, and install, and explicitly maps the core flow, distinguishing this from sibling tools like authenticate 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 explicit when-to-use guidance: 'Use install only to make an MCP PERMANENT... prefer invoke for a single/occasional use.' It also explains when to call list_tools, subscribe/cancel, report_bug, and request_mcp, and contrasts invoke with install behavior.
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 disclose readonlyHint=false and destructiveHint=false, and idempotentHint=true. The description adds no further behavioral context such as whether the feedback is sent to a ticketing system, if it requires authentication, or what happens after submission. Given annotations cover safety traits, the description does not contradict them but also does not enrich the agent's understanding of side effects beyond the purpose.
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 every word adds value. No fluff or redundancy. The instruction about conversation is placed immediately after the purpose, making it clear and actionable.
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?
This is a simple tool with 3 parameters and no output schema. The description covers the primary action and gives a key usage hint. It misses explaining the 'context' parameter, but given the simplicity and the presence of annotations, the description is mostly sufficient for an agent to invoke the tool correctly. Minor gaps do not significantly impede usage.
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 compensate. It explicitly explains the 'conversation' parameter: 'Include the conversation array with recent messages for reproduction,' which adds meaning beyond the schema's bare string type. However, it does not clarify the 'context' parameter, and 'message' is obvious from the purpose. Partial compensation, not fully comprehensive.
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 uses specific verbs and resources, and is distinct from sibling tools like authenticate, marketplace, or show_version. The purpose is unambiguous and easily understood.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool (reporting bugs, missing features, or feedback) and includes a key usage instruction: 'Include the conversation array with recent messages for reproduction.' It does not explicitly mention alternatives or when not to use it, but given the sibling set, this tool is uniquely for reporting. This is close to ideal but lacks explicit exclusions.
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. The description adds no extra behavioral context beyond what the annotations provide, but it does not contradict them either.
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 concise sentence that immediately states the tool's function with no filler or redundant details.
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 trivial version-information tool with no parameters, no output schema, and strong annotations, the description fully covers what the tool does and requires no additional explanation.
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 parameter descriptions are unnecessary. The baseline of 4 for no params is appropriate; the description adds no parameter information because none exists.
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 distinct from sibling tools like authenticate or report_bug, which have obviously 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 usage context is clear: use this tool to retrieve version information. It does not explicitly mention alternatives or when-not-to-use, but for a zero-parameter informational tool this is not a significant omission.
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?
The annotations already declare readOnly, idempotent, and non-destructive behavior, so the description does not need to repeat that. It adds value by detailing what the returned state includes (MCPs, status, accounts, catalog counts), giving the agent a clear idea of the tool's output even without a formal schema. No contradictions with annotations exist.
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 entire description is a single, front-loaded sentence that lists the key outputs in a clear, inline list. There is no fluff, and every word contributes to understanding. It is concise yet information-dense.
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 no-parameter, read-only status tool, the description is complete: it tells the agent exactly what information to expect. It does not cover edge cases like authentication state or error scenarios, but those are not necessary for a basic state query and are not expected given the tool's simplicity.
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 zero parameters in the schema, so the description is not required to explain any. The baseline for zero-parameter tools is 4, and the description appropriately avoids adding spurious parameter 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 ('Returns') and clearly specifies the resource ('current toolkit state') and its components: installed MCPs, connection status, connected accounts, and catalog tool counts. This level of detail effectively distinguishes it from the sibling tools, which target different actions like authentication or connection.
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 provided about when to use this tool versus alternatives. The description does not mention prerequisites, typical use cases, or contrast with sibling tools such as 'show_version' or 'connect'. It simply states what the tool does without any context for decision-making.
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
- -license-quality-maintenanceEmits simplified company certificates from JUCESP (Brazilian state registry) via CNPJ, NIRE, or name. Read-only, hosted MCP server with pay-per-use credit system.
- -license-qualityCmaintenanceEnables advanced search of companies in JUCESP by corporate name, object, capital, address, and other filters, returning the NIRE. Works with any MCP client via HTTP.
- -license-qualityCmaintenanceEnables querying complete JUCESP company registration data by CNPJ, NIRE, or name, including status and history, via a read-only MCP server.
- -license-qualityCmaintenanceEnables querying public licensing information for companies registered with the São Paulo Commercial Board (JUCESP) by CNPJ, providing read-only access through a hosted MCP server.
Your Connectors
Sign in to create a connector for this server.