@every-app/mcp
v0.1.0
Published
MCP server for Every App coding agents
Downloads
29
Readme
Every App MCP
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.
Quick Start
This MCP server is compatible with any coding agent tool. Below are some example configs:
Claude Code
Run this command:
claude mcp add every-app -- npx -y @every-app/mcpCursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"every-app": {
"command": "npx",
"args": ["-y", "@every-app/mcp"]
}
}
}OpenCode
Add to opencode.json:
{
"mcp": {
"every-app": {
"type": "local",
"command": ["npx", "-y", "@every-app/mcp"]
}
}
}Available Tools
| Tool | Description |
|------|-------------|
| browse | List available example apps, internal packages, and documentation |
| list_directory | Browse directory structure of examples and docs |
| read_file | Read file contents with line numbers |
| search_code | Search for patterns using regex |
| find_files | Find files matching a glob pattern |
Development
# Install dependencies
pnpm install
# Build
pnpm run build
# Type check
pnpm run types:check
# Run locally
Swap command argument with this:
`bun run ~/your_workspace/every-app/packages/mcp/src/index.ts`