Skip to main content
Glama
Perufitlife

appwrite-security-mcp

by Perufitlife
README.md
# Appwrite Security MCP Server

> MCP server for Appwrite security audits. Scan permissions, get a structured fix proposal, all from inside Claude Code, Cursor, or Cline. Active probe confirms every leak live with an anonymous fetch.

## Tools

| Tool | What it does |
|---|---|
| `audit_project` | Scans the Appwrite project, returns findings JSON. Active probe ON by default. Caches result. |
| `list_findings` | Lists cached findings by index, optionally filtered by severity. |
| `preview_fix` | Describes the proposed permission change for a finding (Appwrite PATCH replaces the full perms array, not merges, so the agent constructs the new list manually). |

`apply_fix` is intentionally not in v0.1 because Appwrite permission updates are full-replacement — a partial agent diff would silently drop perms. Apply manually in the Appwrite console after `preview_fix`.

## Install

```json
{
  "mcpServers": {
    "appwrite-security": {
      "command": "npx",
      "args": ["-y", "@perufitlife/appwrite-security-mcp"],
      "env": {
        "APPWRITE_ENDPOINT": "https://cloud.appwrite.io/v1",
        "APPWRITE_PROJECT_ID": "...",
        "APPWRITE_API_KEY": "..."
      }
    }
  }
}
```

API key needs scopes: `databases.read`, `collections.read`, `projects.read`.

## License

MIT. Open source. Built by [@Perufitlife](https://github.com/Perufitlife).

For the standalone CLI, see https://github.com/Perufitlife/appwrite-security-skill
For Supabase MCP, see https://github.com/Perufitlife/supabase-security-mcp
For PocketBase MCP, see https://github.com/Perufitlife/pocketbase-security-mcp

TDQS

A3.5/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: auditing, listing findings, and previewing fixes. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: audit_project, list_findings, preview_fix.

Tool Count5/5

3 tools is well-scoped for a focused security audit tool; each serves a necessary function without bloat.

Completeness3/5

Covers the audit, listing, and preview workflow, but lacks an apply_fix tool to execute changes, leaving a notable gap in the lifecycle.

Maintenance

ActivityInactive
ResponsivenessNo issues