Skip to main content
Glama
ShieldZCash

ShieldZ Crypto Payments

Official

@shieldz/mcp

npm

Shieldz용 Model Context Protocol (MCP) 서버입니다. AI 에이전트(Claude 등)가 비수탁형(non-custodial) 암호화폐 결제를 수락하고 디지털 제품을 판매할 수 있게 해줍니다.

자금은 항상 사용자가 제공한 지갑 주소로 정산됩니다. Shieldz는 사용자의 키를 절대 보관하지 않습니다.

키리스 도구 (계정 없음, API 키 없음)

목적지 지갑 주소를 제공하면 한 번의 호출로 암호화폐 결제를 수락할 수 있습니다:

  • create_payment_link — 일회성 결제 링크(공유 가능한 URL + 삽입 가능한 버튼 + QR). 인자: address, amount_usd, 선택적 chain(기본값 base), asset(기본값 USDC), memo, email.

  • create_tip_jar — 재사용 가능한 "원하는 만큼 지불" 페이지; 결제자가 금액을 선택합니다. 인자: address, 선택적 chain, asset, title, suggested_amounts_usd, slug, email.

  • create_unlock디지털 제품 판매: 파일 링크, 라이선스 키 또는 비밀 텍스트(최대 100k자)를 위한 결제 후 잠금 해제 페이지입니다. 구매자가 결제하면 결제 확인 시 페이로드가 자동으로 공개됩니다. 인자: address, price_usd, payload, aup_accepted, 선택적 title, description, chain, asset, email. (최대 10MB의 업로드된 파일을 전달하려면 /api/v1/unlocks에 multipart로 POST하세요.)

  • get_account_statusmanage_token으로 정산 내역, 팁 항아리, 합계 및 인보이스를 조회합니다.

이 도구들은 구성 없이 작동합니다. 선택적 email을 전달하면 소유자가 나중에 매직 링크를 통해 전체 대시보드를 소유할 수 있습니다.

원격 (설치 불필요) — 호스팅된 서버에 MCP 클라이언트를 연결하세요:

{ "mcpServers": { "shieldz": { "url": "https://shieldz.cash/mcp" } } }

로컬 (stdio) — npx로 실행:

{
  "mcpServers": {
    "shieldz": {
      "command": "npx",
      "args": ["-y", "@shieldz/mcp"]
    }
  }
}

Related MCP server: PayRam MCP Server

API 키 도구 (전체 판매자 계정)

SHIELDZ_API_KEY를 설정하면 더 풍부한 인보이스 관리 기능이 추가로 활성화됩니다: create_invoice, get_invoice, list_invoices.

{
  "mcpServers": {
    "shieldz": {
      "command": "npx",
      "args": ["-y", "@shieldz/mcp"],
      "env": { "SHIELDZ_API_KEY": "sk_live_…" }
    }
  }
}

판매자 대시보드 → Developers에서 API 키를 받으세요.

환경

  • SHIELDZ_API_KEY (선택) — 인보이스 도구를 활성화합니다. 키리스 모드에서는 생략하세요.

  • SHIELDZ_BASE_URL (선택) — 기본값은 https://shieldz.cash입니다.

라이선스

MIT © Deniz Yanbollu / Shieldz

Available Tools

3 tools
create_tip_jarAInspect

Create a reusable 'pay what you want' tip jar with ZERO setup, no account, no API key. The payer chooses the amount. Returns a shareable /tip url, an embeddable button, and a manage_url. Idempotent per wallet address: calling again updates the same tip jar. Non-custodial: funds settle directly to the address you provide.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugNoOptional custom URL slug; auto-generated if omitted
assetNoDefaults to USDC
chainNoDefaults to base
emailNoOptional, lets the owner claim a dashboard later
titleNoHeading shown on the tip page, e.g. 'Buy me a coffee'
addressYesDestination wallet; funds settle here. Shieldz never holds them.
descriptionNo
suggested_amounts_usdNoPreset amount buttons in USD, e.g. [3, 5, 10]

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries full burden and discloses key behaviors: idempotent per wallet address, non-custodial, funds settle directly, and updates the same jar on repeat calls. Could mention potential side effects of updates (e.g., overwriting settings) but overall strong.

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

Conciseness5/5

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

Two sentences with no fluff. First sentence packs purpose and key value propositions; second covers idempotence and non-custodial nature. Every part earns its place.

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

Completeness4/5

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

For a tool with 8 parameters (1 required) and no output schema, the description covers overall function, return types, and behavioral traits. It lacks error cases or edge conditions, but completeness is adequate for a creation tool.

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

Parameters4/5

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

Schema coverage is 88% (high), so baseline is 3. The description adds context beyond schema: confirms the address parameter is the destination and that funds are non-custodial, and suggests amount parameters relate to payer choice. This adds meaningful semantic value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it creates a reusable 'pay what you want' tip jar with zero setup, and specifies return values (shareable URL, embeddable button, manage_url). It distinguishes from siblings like create_payment_link (likely fixed amounts) and get_account_status (different function).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says 'Create a reusable tip jar with ZERO setup' which implies when to use. However, it does not explicitly contrast with sibling tools or state when NOT to use this tool. The context is clear but lacks exclusions.

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

get_account_statusAInspect

Look up a keyless Shieldz account by its manage_token (returned when you create a payment link or tip jar). Returns settlement details, tip jars, totals (paid/pending), and the full invoice list as structured JSON.

ParametersJSON Schema
NameRequiredDescriptionDefault
manage_tokenYesThe manage_token from create_payment_link / create_tip_jar

TDQS

A4.6/5.0
Behavior4/5

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

Without annotations, the description carries full burden. It specifies exactly what is returned (settlement details, tip jars, totals, invoice list), which discloses the tool's output. However, it does not explicitly state that the operation is read-only.

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

Conciseness5/5

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

Two sentences, zero wasted words. The purpose is front-loaded ('Look up a keyless Shieldz account'), and the output is concisely listed.

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

Completeness5/5

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

For a simple, one-parameter lookup tool with no output schema or annotations, the description covers all essential aspects: input source, output contents (structured JSON). No additional information is needed.

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

Parameters5/5

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

The schema describes the required parameter 'manage_token' as the token from sibling tools. The description reinforces this by referencing the same origin, adding practical context beyond the schema. Schema coverage is 100%.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'look up' and the resource 'keyless Shieldz account' by a specific token. It distinguishes from sibling tools (create_payment_link, create_tip_jar) by focusing on retrieval vs. creation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains the token origin ('returned when you create a payment link or tip jar'), linking to sibling tools. It implies use after creation, but does not explicitly state when not to use or provide alternative conditions.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv0.3.0
    • First observedcreate_payment_link
    • First observedcreate_tip_jar
    • First observedget_account_status

TDQS

A4.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: fixed-amount payment link, flexible tip jar, and account status. There is no overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (create_payment_link, create_tip_jar, get_account_status), making it easy to infer function from name.

Tool Count5/5

With 3 tools, the server is tightly scoped to its 'zero setup' philosophy, covering the essential operations without unnecessary bloat.

Completeness4/5

The server covers creation of two payment types and status retrieval, but lacks update/delete capabilities for payment links or tip jars, which slightly limits agent workflows.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for AgentPay — the payment gateway for autonomous AI agents. Fund a wallet once, give your agent the key, and it discovers, provisions, and pays for tool APIs on its own. One key, every tool.
    112
    1
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to deploy and operate a self-hosted, no-signup crypto payment gateway with multi-chain support, card-to-crypto checkout, and MCP tools for payment links and integration snippets.
    155
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Accept crypto payments from AI agents: create an invoice in one call and get a hosted checkout link (USDC/USDT on Celo, Base, Arbitrum, Polygon, BSC). No API key, instant self-custody settlement.
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ShieldZCash/shieldz-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server