@every-app/mcp 0.0.1 → 0.0.2
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 +4 -31
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @every-app/mcp
|
|
2
2
|
|
|
3
|
-
MCP
|
|
3
|
+
MCP for Every App. This server gives your coding agent access to example apps and Every App documentation which can be used for reference when building out your application.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This MCP server is compatabile with any coding agent tool. Below are some example configs:
|
|
8
8
|
|
|
9
9
|
### Claude Code
|
|
10
10
|
|
|
@@ -44,8 +44,6 @@ Add to `opencode.json`:
|
|
|
44
44
|
}
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
That's it! The server will automatically clone the Every App examples to `~/.every-app-mcp/examples` on first run.
|
|
48
|
-
|
|
49
47
|
## Available Tools
|
|
50
48
|
|
|
51
49
|
| Tool | Description |
|
|
@@ -57,28 +55,6 @@ That's it! The server will automatically clone the Every App examples to `~/.eve
|
|
|
57
55
|
| `every_app_mcp_find_files` | Find files matching a glob pattern |
|
|
58
56
|
| `every_app_mcp_fetch_docs` | Fetch Every App documentation pages |
|
|
59
57
|
|
|
60
|
-
## Configuration (Optional)
|
|
61
|
-
|
|
62
|
-
You can customize the examples location by setting environment variables:
|
|
63
|
-
|
|
64
|
-
```json
|
|
65
|
-
{
|
|
66
|
-
"mcpServers": {
|
|
67
|
-
"every-app": {
|
|
68
|
-
"command": "npx",
|
|
69
|
-
"args": ["-y", "@every-app/mcp"],
|
|
70
|
-
"env": {
|
|
71
|
-
"EVERY_APP_EXAMPLES_DIR": "/custom/path/to/examples"
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
| Variable | Description | Default |
|
|
79
|
-
|----------|-------------|---------|
|
|
80
|
-
| `EVERY_APP_EXAMPLES_DIR` | Path to examples | `~/.every-app-mcp/examples` |
|
|
81
|
-
| `EVERY_APP_DOCS_DIR` | Path to local docs | Falls back to GitHub |
|
|
82
58
|
|
|
83
59
|
## Development
|
|
84
60
|
|
|
@@ -93,10 +69,7 @@ pnpm run build
|
|
|
93
69
|
pnpm run types:check
|
|
94
70
|
|
|
95
71
|
# Run locally
|
|
96
|
-
|
|
72
|
+
Swap command argument with this:
|
|
73
|
+
`bun run ~/your_workspace/every-app/packages/mcp/src/index.ts`
|
|
97
74
|
```
|
|
98
75
|
|
|
99
|
-
## Requirements
|
|
100
|
-
|
|
101
|
-
- Node.js 18+
|
|
102
|
-
- Git (for automatic example cloning)
|