npx claudepluginhub includehasan/prospect-studio --plugin prospect-studioAdd to your .mcp.json:
{
"mcpServers": {
"frappe": {
"command": "node",
"args": [
"${CLAUDE_PLUGIN_ROOT}/mcp-server/frappe-server.js"
],
"env": {
"FRAPPE_URL": "${user_config.frappe_url}",
"FRAPPE_API_KEY": "${user_config.frappe_api_key}",
"WORKSPACE_ROOT": "${user_config.workspace_root}",
"FRAPPE_API_SECRET": "${user_config.frappe_api_secret}",
"FRAPPE_LEAD_OWNER": "${user_config.frappe_lead_owner}"
}
}
}
}Replace placeholder values for: FRAPPE_API_KEY, FRAPPE_API_SECRET
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server connects to external services. Review the URLs it accesses before enabling.
This server has elevated permissions. Review the source code before enabling.
nodeFRAPPE_URL=${user_config.frappe_url}FRAPPE_API_KEY=${user_config.frappe_api_key}WORKSPACE_ROOT=${user_config.workspace_root}FRAPPE_API_SECRET=${user_config.frappe_api_secret}FRAPPE_LEAD_OWNER=${user_config.frappe_lead_owner}