@agentdomain/mcp-server 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -4
- package/dist/index.js +587 -336
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
Lets any MCP-compatible LLM client (Claude Desktop, ChatGPT desktop apps, custom agents) register and manage agent identities through natural language.
|
|
6
6
|
|
|
7
|
+
The default API base, `https://agentdomain.app/api/v1`, also returns machine-readable discovery
|
|
8
|
+
metadata when requested directly.
|
|
9
|
+
|
|
7
10
|
## Tools exposed
|
|
8
11
|
|
|
9
12
|
- `check_domain_availability` - is a domain available?
|
|
@@ -14,24 +17,26 @@ Lets any MCP-compatible LLM client (Claude Desktop, ChatGPT desktop apps, custom
|
|
|
14
17
|
- `send_agent_email` - send an email from an agent's address
|
|
15
18
|
- `send_agent_email_batch` - queue up to 100 email objects in one API request
|
|
16
19
|
- `list_agent_email` - read agent inbox/outbox messages
|
|
17
|
-
- `delete_agent_email` - permanently delete one inbox/outbox message
|
|
18
20
|
- `get_agent_email_usage` - inspect combined monthly sent and received usage
|
|
19
21
|
- `configure_email_webhook` - configure a signed inbound email webhook
|
|
20
22
|
- `update_primary_email` - change the included primary email username
|
|
21
23
|
- `create_email_alias` - create a Starter/Pro/Enterprise receive-and-send email alias
|
|
22
24
|
- `delete_email_alias` - delete an active email alias
|
|
23
25
|
- `list_dns_records` - list DNS records for an agent domain
|
|
24
|
-
- `create_dns_record` - create a user-managed record
|
|
26
|
+
- `create_dns_record` - create a user-managed DNS record
|
|
25
27
|
- `update_dns_record` - update a user-managed DNS record
|
|
26
28
|
- `delete_dns_record` - delete a user-managed DNS record
|
|
27
|
-
- `
|
|
29
|
+
- `get_dns_capabilities` - discover all 13 Spaceship-supported types and validation constraints
|
|
30
|
+
- `change_dns_records` - preview or apply a revision-protected merge/replace batch
|
|
31
|
+
- `import_dns_zone` - preview or apply a standard BIND zone import
|
|
32
|
+
- `export_dns_zone` - export user-managed or permitted complete-zone records as BIND
|
|
33
|
+
- `reconfigure_ssl` - rebuild Cloudflare SaaS SSL and DNS validation records
|
|
28
34
|
- `fund_renewal_vault` - top up an agent's renewal vault
|
|
29
35
|
- `withdraw_renewal_vault` - build an owner-signed vault withdrawal transaction
|
|
30
36
|
- `get_renewal_status` - check renewal date, amount, vault balance, and auto-renew state
|
|
31
37
|
- `enable_auto_renew` - enable on-chain auto-renew with the AgentID NFT owner wallet
|
|
32
38
|
- `get_service_plan` - inspect per-agent Included/Starter/Pro/Enterprise limits
|
|
33
39
|
- `purchase_service_plan` - upgrade to Starter, Pro, or Enterprise with x402 USDC
|
|
34
|
-
- `schedule_service_plan_renewal` - choose the exact next-renewal plan and Enterprise tier
|
|
35
40
|
|
|
36
41
|
## Install
|
|
37
42
|
|