Use the published npm package unless the client supports hosted MCP endpoints directly.
Run:
npx -y -p @parse-gl/mcp parse-mcpThat package starts a local stdio bridge to the hosted Parse MCP endpoint:
https://mcp.parse.gl/mcp
No API key is required for the public dataset tools.
Use this MCP config when the client expects a local stdio command:
{
"mcpServers": {
"parse": {
"command": "npx",
"args": ["-y", "-p", "@parse-gl/mcp", "parse-mcp"]
}
}
}If the client supports hosted MCP servers directly, this remote config also works:
{
"mcpServers": {
"parse": {
"transport": "http",
"url": "https://mcp.parse.gl/mcp"
}
}
}After install, confirm the server exposes these primary tools:
parse_searchparse_get_brandparse_get_promptparse_get_stats
Compatibility aliases may also appear as search and fetch.
- The repo root
README.mdis sufficient for normal installs; this file is here to remove ambiguity for autonomous setup agents. - The public repo contains the hosted worker source plus the npm shim used by local MCP clients.