@agentdomain/mcp-server 0.6.0 → 0.8.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/package.json CHANGED
@@ -1,12 +1,30 @@
1
1
  {
2
2
  "name": "@agentdomain/mcp-server",
3
- "version": "0.6.0",
4
- "description": "MCP server exposing AgentDomain registration and management tools to any LLM",
3
+ "version": "0.8.0",
4
+ "description": "Secure-by-default MCP server for AgentDomain identity, DNS, email, and renewal workflows",
5
+ "keywords": [
6
+ "agentdomain",
7
+ "ai-agents",
8
+ "mcp",
9
+ "model-context-protocol",
10
+ "identity",
11
+ "x402",
12
+ "base"
13
+ ],
5
14
  "license": "Apache-2.0",
6
- "repository": "https://github.com/0xmdrakib/AgentDomain.git",
7
- "homepage": "https://agentdomain.app/docs",
8
- "bugs": "https://github.com/0xmdrakib/AgentDomain/issues",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/0xmdrakib/AgentDomain.git",
18
+ "directory": "packages/mcp-server"
19
+ },
20
+ "homepage": "https://docs.agentdomain.app/sdk/mcp",
21
+ "bugs": {
22
+ "url": "https://github.com/0xmdrakib/AgentDomain/issues"
23
+ },
9
24
  "type": "module",
25
+ "engines": {
26
+ "node": ">=20"
27
+ },
10
28
  "main": "./dist/index.js",
11
29
  "types": "./dist/index.d.ts",
12
30
  "bin": {
@@ -15,6 +33,8 @@
15
33
  "files": [
16
34
  "dist",
17
35
  "README.md",
36
+ "LICENSE",
37
+ "NOTICE",
18
38
  "package.json"
19
39
  ],
20
40
  "publishConfig": {
@@ -24,8 +44,8 @@
24
44
  "@modelcontextprotocol/sdk": "^1.0.4",
25
45
  "viem": "^2.55.2",
26
46
  "zod": "^3.24.1",
27
- "@agentdomain/sdk": "^0.6.0",
28
- "@agentdomain/shared": "^0.6.0"
47
+ "@agentdomain/sdk": "^0.8.0",
48
+ "@agentdomain/shared": "^0.8.0"
29
49
  },
30
50
  "devDependencies": {
31
51
  "@types/node": "^22.10.5",
@@ -36,6 +56,7 @@
36
56
  "build": "tsc",
37
57
  "dev": "tsx watch src/index.ts",
38
58
  "start": "node dist/index.js",
59
+ "test": "pnpm --filter @agentdomain/sdk build && pnpm build && node --test test/*.test.mjs",
39
60
  "typecheck": "tsc --noEmit",
40
61
  "lint": "echo \"no lint\""
41
62
  }