
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
espocrm-power-mcp
Advanced tools
This MCP server provides a powerful set of tools for interacting with EspoCRM, including CRUD operations, analytics, and agent knowledge management.
To use this server, you can run it directly with npx
:
npx @cg-labs/espocrm-power-mcp
Alternatively, you can clone the repository and run it locally:
git clone https://github.com/CG-Labs/EspoCRM-Power-MCP.git
cd EspoCRM-Power-MCP
npm install
npm start
This server is configured through environment variables. You can set them in your shell, create a .env
file in the project root, or configure them in your MCP client's settings file.
mcp_settings.json
){
"mcpServers": {
"espocrm": {
"command": "npx",
"args": [
"espocrm-power-mcp"
],
"env": {
"ESPOCRM_API_URL": "https://your-espocrm-instance/api/v1",
"ESPOCRM_API_KEY": "your-api-key",
"MYSQL_HOST": "your-mysql-host",
"MYSQL_USER": "your-mysql-user",
"MYSQL_PASSWORD": "your-mysql-password",
"MYSQL_DATABASE": "your-espocrm-database",
"AGENT_USER_ID": "your-agent-user-id"
}
}
}
}
ESPOCRM_API_URL
: The URL of your EspoCRM API (e.g., https://your-espocrm-instance/api/v1
).ESPOCRM_API_KEY
: Your EspoCRM API key.MYSQL_HOST
: The hostname of your MySQL database.MYSQL_USER
: The username for your MySQL database.MYSQL_PASSWORD
: The password for your MySQL database.MYSQL_DATABASE
: The name of your EspoCRM database.AGENT_USER_ID
: The ID of the user to assign gists to.discover_entities
: Discovers available EspoCRM entities.query
: Executes CRUD operations on entities with intelligent routing.analytics
: Runs analytics queries.get_gist
: Retrieves an agent gist by name.create_gist
: Creates a new agent gist. The Gist
entity is a custom entity where we can save heuristics for the agents to use while conducting complex SQL and API queries.update_gist
: Updates an existing agent gist.FAQs
A powerful MCP server for EspoCRM
We found that espocrm-power-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.