dfns-mcp 1.2.0 → 1.2.1

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 CHANGED
@@ -30,7 +30,7 @@ powershell -c "irm bun.sh/install.ps1 | iex"
30
30
  ### Claude Code (Recommended)
31
31
 
32
32
  ```bash
33
- claude mcp add -s user dfns-docs -- bunx dfns-mcp@latest
33
+ claude mcp add -s user dfns-mcp -- bunx dfns-mcp@latest
34
34
  ```
35
35
 
36
36
  The `-s user` flag installs to the user so it's available in all your projects.
@@ -42,7 +42,7 @@ Add to your Cursor MCP settings (`.cursor/mcp.json`):
42
42
  ```json
43
43
  {
44
44
  "mcpServers": {
45
- "dfns-docs": {
45
+ "dfns-mcp": {
46
46
  "command": "bunx",
47
47
  "args": ["dfns-mcp@latest"]
48
48
  }
@@ -53,7 +53,7 @@ Add to your Cursor MCP settings (`.cursor/mcp.json`):
53
53
  ### Codex
54
54
 
55
55
  ```bash
56
- codex mcp add dfns-docs -- bunx dfns-mcp@latest
56
+ codex mcp add dfns-mcp -- bunx dfns-mcp@latest
57
57
  ```
58
58
 
59
59
  ### Gemini CLI
@@ -63,7 +63,7 @@ Add to your Gemini CLI config (`~/.gemini/settings.json`):
63
63
  ```json
64
64
  {
65
65
  "mcpServers": {
66
- "dfns-docs": {
66
+ "dfns-mcp": {
67
67
  "command": "bunx",
68
68
  "args": ["dfns-mcp@latest"]
69
69
  }
@@ -90,7 +90,7 @@ Add this to your global `~/.claude/CLAUDE.md` (or `~/AGENTS.md` for other agents
90
90
 
91
91
  When working with DFNS (wallet infrastructure, key management, blockchain integrations):
92
92
 
93
- 1. **Always** call `mcp__dfns-docs__init` at the start of any DFNS-related task
93
+ 1. **Always** call `mcp__dfns-mcp__init` at the start of any DFNS-related task
94
94
  2. **Never** rely on training data for DFNS APIs - always use `search_docs` and `get_doc` to verify
95
95
  3. Use `search_types` and `get_type` to get accurate TypeScript type definitions
96
96
  4. DFNS APIs and SDKs change frequently - the MCP server has the latest documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfns-mcp",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "MCP server for DFNS documentation and SDK reference - provides AI agents with access to DFNS API docs, TypeScript types, and code examples",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
package/src/index.ts CHANGED
File without changes