Parse Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Parse Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A comprehensive Model Context Protocol (MCP) server for Parse Server and the Parse JS SDK. This server provides complete integration with the Parse Platform, enabling AI assistants to interact with Parse databases, users, files, and more.
#### Objects (CRUD Operations)
#### Users
#### Files
#### Roles
#### Schema
#### Config
#### Cloud Code
#### Live Queries
#### Advanced Queries
npm install -g @asaje/parse-mcp-servergit clone https://github.com/asaje/parse-mcp-server.git
cd parse-mcp-server
npm install
npm run buildThe server requires the following environment variables:
PARSE_SERVER_URL=http://localhost:1337/parse
PARSE_APP_ID=your_app_id
PARSE_JAVASCRIPT_KEY=your_javascript_key # Optional
PARSE_MASTER_KEY=your_master_key # Required for admin operationsAdd to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"parse": {
"command": "npx",
"args": ["@asaje/parse-mcp-server"],
"env": {
"PARSE_SERVER_URL": "http://localhost:1337/parse",
"PARSE_APP_ID": "your_app_id",
"PARSE_MASTER_KEY": "your_master_key"
}
}
}
}Or if installed globally:
{
"mcpServers": {
"parse": {
"command": "parse-mcp-server",
"env": {
"PARSE_SERVER_URL": "http://localhost:1337/parse",
"PARSE_APP_ID": "your_app_id",
"PARSE_MASTER_KEY": "your_master_key"
}
}
}
}Add to your MCP settings:
{
"parse-mcp-server": {
"command": "npx",
"args": ["@asaje/parse-mcp-server"],
"env": {
"PARSE_SERVER_URL": "http://localhost:1337/parse",
"PARSE_APP_ID": "your_app_id",
"PARSE_MASTER_KEY": "your_master_key"
}
}
}Tool: create-object
Arguments: {
"className": "GameScore",
"data": {
"score": 1337,
"playerName": "Sean Plott",
"cheatMode": false
}
}Tool: query-objects
Arguments: {
"className": "GameScore",
"where": {
"score": { "$gt": 1000 }
},
"order": "-score",
"limit": 10
}Tool: signup-user
Arguments: {
"username": "john_doe",
"password": "securepassword",
"email": "[email protected]",
"additionalFields": {
"displayName": "John Doe"
}
}MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.