
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@tooljet/mcp
Advanced tools
Empower your AI assistants with direct access to your ToolJet platform. This MCP (Model Context Protocol) integration enables AI tools like Claude, Cursor, and other MCP-compatible assistants to interact with your ToolJet instance.
ToolJet MCP is a bridge that connects AI assistants to your ToolJet platform through the Model Context Protocol. This allows AI tools to:
You can install the ToolJet MCP package globally:
npm install -g @tooljet/mcp
Get an access token of your ToolJet instance that you've setup up in your environment variables. You'll need this token to authenticate the MCP server. Refer to the ToolJet API documentation for more details.
Configure your AI assistant to use the ToolJet MCP server. Here's a typical configuration:
{
"mcpServers": {
"tooljet": {
"command": "npm",
"args": ["@tooljet/mcp"],
"env": {
"TOOLJET_ACCESS_TOKEN": "your-access-token",
"TOOLJET_HOST": "https://your-tooljet-instance.com"
}
}
}
}
Alternatively, you can use the package directly if you have it installed globally:
{
"mcpServers": {
"tooljet": {
"command": "tooljet-mcp",
"env": {
"TOOLJET_ACCESS_TOKEN": "your-access-token",
"TOOLJET_HOST": "https://your-tooljet-instance.com"
}
}
}
}
If you're using Windows, prefix the command with cmd /c:
{
"mcpServers": {
"tooljet": {
"command": "cmd",
"args": [
"/c",
"npm",
"@tooljet/mcp"
],
"env": {
"TOOLJET_ACCESS_TOKEN": "your-access-token",
"TOOLJET_HOST": "https://your-tooljet-instance.com"
}
}
}
}
ToolJet MCP provides several tools that AI assistants can use to interact with your ToolJet instance:
| Tool | Description |
|---|---|
get-all-users | Retrieve a list of all users in your ToolJet instance |
get-user | Get detailed information about a specific user |
create-user | Create a new user in a specified workspace |
update-user | Update a user's profile information |
update-user-role | Change a user's role within a workspace |
| Tool | Description |
|---|---|
get-all-workspaces | List all workspaces in your ToolJet instance |
| Tool | Description |
|---|---|
get-all-apps | List all applications within a specific workspace |
Once configured, your AI assistant can perform tasks like:
Want to contribute to ToolJet MCP? Here's how to set up the development environment:
# Clone the repository
git clone https://github.com/ToolJet/tooljet-mcp
# Install dependencies
cd mcp
npm install
# Build the project
npm run build
FAQs
ToolJet Model Context Protocol implementation
We found that @tooljet/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.