foundationworks-mcp 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/README.md +13 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,7 +18,13 @@ MCP server that gives Claude, Cursor, Windsurf, and other AI agents access to yo
18
18
 
19
19
  **New here?** [Sign up at foundationworks.io](https://foundationworks.io)
20
20
 
21
- ### 2. Configure your AI tool
21
+ ### 2. Install the package
22
+
23
+ ```bash
24
+ npm install -g foundationworks-mcp
25
+ ```
26
+
27
+ ### 3. Configure your AI tool
22
28
 
23
29
  **Claude Desktop** (`~/.claude/config.json`):
24
30
 
@@ -26,8 +32,7 @@ MCP server that gives Claude, Cursor, Windsurf, and other AI agents access to yo
26
32
  {
27
33
  "mcpServers": {
28
34
  "foundation": {
29
- "command": "npx",
30
- "args": ["-y", "foundationworks-mcp"],
35
+ "command": "foundationworks-mcp",
31
36
  "env": {
32
37
  "FOUNDATION_TOKEN": "mcp_your_token_here"
33
38
  }
@@ -42,8 +47,7 @@ MCP server that gives Claude, Cursor, Windsurf, and other AI agents access to yo
42
47
  {
43
48
  "mcpServers": {
44
49
  "foundation": {
45
- "command": "npx",
46
- "args": ["-y", "foundationworks-mcp"],
50
+ "command": "foundationworks-mcp",
47
51
  "env": {
48
52
  "FOUNDATION_TOKEN": "mcp_your_token_here"
49
53
  }
@@ -57,8 +61,7 @@ MCP server that gives Claude, Cursor, Windsurf, and other AI agents access to yo
57
61
  ```json
58
62
  {
59
63
  "foundation": {
60
- "command": "npx",
61
- "args": ["-y", "foundationworks-mcp"],
64
+ "command": "foundationworks-mcp",
62
65
  "env": {
63
66
  "FOUNDATION_TOKEN": "mcp_your_token_here"
64
67
  }
@@ -72,8 +75,7 @@ MCP server that gives Claude, Cursor, Windsurf, and other AI agents access to yo
72
75
  {
73
76
  "context_servers": {
74
77
  "foundation": {
75
- "command": "npx",
76
- "args": ["-y", "foundationworks-mcp"],
78
+ "command": "foundationworks-mcp",
77
79
  "env": {
78
80
  "FOUNDATION_TOKEN": "mcp_your_token_here"
79
81
  }
@@ -82,6 +84,8 @@ MCP server that gives Claude, Cursor, Windsurf, and other AI agents access to yo
82
84
  }
83
85
  ```
84
86
 
87
+ > **Note:** You can also use `npx -y foundationworks-mcp` instead of installing globally, but this may cause connection timeouts in some editors due to slower startup.
88
+
85
89
  ### 3. Start building
86
90
 
87
91
  Ask your AI: *"Check my PRD for the authentication requirements"*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foundationworks-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Connect your AI coding agent to your product specs in Foundation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",