AI 开票助手 · 电子发票开具
Server Details
对话式开具电子发票(数电票):第一步免费生成发票草稿(自动校验税号、税率并算税),第二步确认开票(需 App Key,按张计费),支持开票记录查询。
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolsinvoice_confirm_issueAInspect
第 2 步:确认开具草稿。传入 invoice_create_draft 返回的 draft_id,正式提交开票(需 App Key,按张计费)。开票后生成发票号码与交付信息。
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes | 草稿 ID(invoice_create_draft 返回) | |
| payer_email | No | 接收发票文件的邮箱(可选) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and does well: it discloses that this is a formal submission with per-invoice billing, requires App Key, and produces invoice number and delivery info. It stops short of covering irreversibility, failure handling, or what happens if the draft is already confirmed, but the key side-effects are present.
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 dense sentence opens with a step marker, then gives the required input, side-effect, prerequisite, and outcome. There is no filler or redundant restatement.
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 two-parameter tool with no output schema, the description provides enough to invoke correctly: required input, prerequisite, billing consequence, and generated artifacts. It does not describe error semantics or response format, but given the tool's simplicity and lack of output schema, this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents both parameters at 100% coverage. The description adds value by specifying that draft_id is exactly the value returned by invoice_create_draft, linking the two tools in the workflow. It does not elaborate on payer_email's delivery behavior, but the schema covers it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('confirm issuing draft') on a specific resource (the draft created by invoice_create_draft), and explicitly frames it as 'Step 2' in a workflow. This clearly differentiates it from the sibling invoice_create_draft (which creates) and invoice_query (which reads).
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 tells the agent exactly when to use it: after invoice_create_draft, passing that tool's returned draft_id. It also lists a prerequisite (App Key) and cost model. It does not, however, explicitly state when to prefer invoice_query or invoice_create_draft instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
invoice_create_draftBInspect
第 1 步:把订单信息(文字描述或结构化明细)生成发票草稿。自动校验购方税号格式、税率合法性、金额上限,并自动计算税额与价税合计。草稿免费生成,24 小时内有效。
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | 商品/服务明细 | |
| remark | No | 发票备注(如订单号、项目名) | |
| buyer_name | Yes | 购方名称(企业/个人抬头) | |
| buyer_tax_id | No | 购方税号(统一社会信用代码,15/18/20 位);个人开票传空 | |
| invoice_type | No | 发票类型,默认普通发票(数电普票) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It discloses several key behaviors: automatic validation of buyer tax ID format, tax rate legality, amount limits, auto-calculation of tax and total, free generation, and a 24-hour validity period. However, it omits what happens on validation failure, whether it creates a persistent entity, and the response format. These are notable gaps for a mutation tool.
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 purpose and step context, and contains no fluff. It efficiently conveys the core function and key behaviors, though it could be more explicit about workflow integration. It earns a high score for brevity and 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 no output schema and no annotations, the description must compensate for a moderate-complexity tool with 5 parameters. It misses critical information: how to reference the generated draft in subsequent steps (e.g., a draft ID), what happens on validation failure, and the response structure. Additionally, the claim '文字描述或结构化明细' conflicts with the schema which only accepts structured items, creating ambiguity. The description is incomplete for an agent to fully understand the workflow and error handling.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters. The description adds no additional parameter semantics beyond what the schema provides; it only mentions behavioral aspects like validation. The baseline of 3 applies because the schema carries the parameter meaning effectively.
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 generates an invoice draft from order information, using a specific verb 'generate' and resource 'invoice draft'. It labels itself as 'Step 1' which implies a workflow position but does not explicitly name sibling tools like invoice_confirm_issue, so differentiation is implicit rather than explicit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase '第 1 步' provides clear context that this tool is the first step in the invoice workflow, implying use before confirmation. However, it does not explicitly state when not to use it or name alternatives, such as 'use invoice_confirm_issue to issue the finalized invoice'. The guidance is implicit, not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
invoice_queryBInspect
查询当前 App Key 名下的发票草稿与开票记录(需 App Key)。可按状态筛选:draft(草稿)/ issued(已开具)/ all。
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | 筛选状态,默认 all | |
| date_to | No | 结束日期 YYYY-MM-DD(可选) | |
| date_from | No | 起始日期 YYYY-MM-DD(可选) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. The verb '查询' implies a read-only operation and the description adds the auth/scoping requirement (App Key). However, it does not explicitly state that the tool is non-mutating, nor does it describe pagination, rate limits, or the shape of the 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 two short sentences with no filler. The first sentence front-loads the core purpose and scope, and the second sentence lists the key filtering option. 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?
For a query tool with no output schema and no annotations, the description adequately covers the resource, scope, auth requirement, and status filter. However, it does not mention the date-range parameters (even though they are in the schema), the return format, or any behavior about empty results, which leaves minor but relevant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the input schema already documents all three parameters. The description reinforces the status enum with Chinese translations (draft/草稿, issued/已开具, all), but this is a minimal addition beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('查询' / query) and a specific resource ('发票草稿与开票记录' / invoice drafts and issuance records), scoped to the current App Key. This clearly distinguishes the tool from siblings like invoice_create_draft and invoice_confirm_issue by being the query operation, though it does not explicitly name those siblings.
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 no guidance on when to use this tool versus the sibling tools. It mentions a prerequisite (App Key required) and lists available status filters, but it does not state exclusions, alternatives, or the context in which querying is appropriate over creating or issuing invoices.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
service_infoAInspect
查看服务介绍、计费方式与联系方式(无需 App Key,免费)。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full disclosure burden. It delivers meaningful behavioral traits: the operation is read-only (查看), requires no authentication (无需 App Key), and is free (免费). This is strong coverage for a zero-parameter info tool, though it omits response format and any pagination or rate-limit behavior.
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 compact sentence conveys the full purpose with usage conditions in parentheses. The core action is front-loaded, and every clause carries information — no filler, no repetition of the tool name, 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?
For a tool with zero parameters, no annotations, and no output schema, the description is complete: it names exactly what information is returned (introduction, billing, contact) and the preconditions (free, no App Key). Nothing an agent needs to invoke it correctly is missing.
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 0 parameters with 100% schema coverage, which sets the baseline at 4. There are no parameter semantics to add, and the description correctly avoids inventing any — nothing is lost by the description staying silent on parameters.
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 (查看/view) and resource (服务介绍、计费方式与联系方式 = service introduction, billing, contact info), giving the tool a concrete scope. The domain clearly differs from the sibling invoice tools (invoice_confirm_issue, invoice_create_draft, invoice_query), so an agent can distinguish it without opening any schema.
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 prerequisite guidance — 无需 App Key,免费 (no App Key required, free) — telling an agent this tool needs no authentication setup and has no cost. However, it does not explicitly state when to prefer this tool over alternatives or when not to use it; the relationship to the invoice siblings is implied only by domain difference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Emite CFDIs 4.0 y resuelve claves del SAT para agentes de IA (México), con permisos por API key.
Validate, generate & convert EU e-invoices (UBL, CII, XRechnung, Factur-X) — EN 16931 pre-validated.
Korea POPBiLL e-tax-invoice: AI agents issue, query & transmit e-invoices, stateless BYO.
Issue and manage Brazilian service invoices (NFS-e) by chatting with your agent, platform-hosted, no
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to issue, query, and transmit Korean electronic tax invoices (전자세금계산서) via POPBiLL/Linkhub, including VAT computation and NTS reporting.MIT
- AlicenseNot gradedqualityDmaintenanceIntegrates with the Turkish Revenue Administration (GİB) e-Arşiv Fatura system to manage e-invoices via natural language. Users can list, search, create, and cancel invoices, as well as validate Turkish tax numbers and retrieve UBL-TR format XML data.3MIT

InvoiceXMLofficial
AlicenseNot gradedqualityCmaintenanceInvoiceXML brings e-invoice compliance to your AI agent. Create, validate, convert, render, and extract structured invoices across UBL (Peppol BIS Billing 3.0, used worldwide), CII, Factur-X, ZUGFeRD, and XRechnung, all checked against the EN 16931 standard and official Schematron rules. Ask your assistant to generate a compliant invoice, validate one for errors, or convert between formats, with n5MIT- AlicenseNot gradedqualityBmaintenanceEnables AI agents to issue Peruvian electronic invoices (factura/boleta) declared to SUNAT via Nubefact. Supports creating, querying, and canceling invoices with automatic IGV tax computation.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct role: create draft, confirm draft issuance, query records, and view service info. Although confirm_issue depends on create_draft, their purposes and required inputs are unambiguous.
Core tools consistently use the invoice_ prefix with snake_case verbs (create_draft, confirm_issue, query), but invoice_query is more noun-like and service_info breaks the prefix pattern. Overall the naming is still predictable and readable.
Four tools is well-scoped for this small invoice-issuance domain. Each tool covers an essential action in the workflow without redundancy or unnecessary surface area.
The core workflow of creating a draft, confirming issuance, and querying records is covered. There are minor gaps such as no draft update/delete or invoice void/red-issuance capability, but agents can work around them by creating a new draft within the 24-hour validity window.