Setup Guide
Get Aigents Work running with Claude Desktop in under 5 minutes.
Prerequisites
- Claude Desktop installed on your computer
- A text editor to modify the config file
- An Aigents Work account (sign up at my.aigentswork.com)
Step 1: Create an API Key
An API key connects Claude Desktop to your Aigents Work account. This allows you to:
- Create expressions that are linked to your account
- View and manage your expressions in the portal
- Keep your creations private or share them with others
To create an API key:
- Sign in to the Aigents Work Portal
- Go to Settings > API Keys
- Click Create API Key
- Give it a name (e.g., "Claude Desktop") and select the permissions you need
- Copy the key immediately - you won't be able to see it again!
Step 2: Configure Claude Desktop
Open Claude Desktop's configuration file:
macOS:
open ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows:
notepad %APPDATA%\Claude\claude_desktop_config.json
Add the Aigents Work MCP server to your config with your API key:
{
"mcpServers": {
"aigentswork": {
"command": "npx",
"args": ["@aigentswork/mcp-server"],
"env": {
"AIGENTSWORK_API_KEY": "your-api-key-here"
}
}
}
}
Replace your-api-key-here with the API key you copied in Step 1.
The MCP server will be automatically downloaded and run when Claude Desktop starts.
Step 3: Restart Claude Desktop
Close and reopen Claude Desktop to load the new MCP server.
Step 4: Start Creating!
Now you can ask Claude to create interfaces for you. Try these prompts:
"Create a simple dashboard showing website analytics"
"Build a contact form with name, email, and message fields"
"Make a todo list app with add, complete, and delete functionality"
Claude will create an expression and push it to your Aigents Work portal. You'll get a link to view your new interface.
View Your Creations
Visit the Aigents Work Portal to see all your expressions. Each expression has:
- View Details - See the JSON definition and version history
- Render - View the live, interactive interface
Troubleshooting
MCP server not connecting
- Check that the config file is valid JSON
- Restart Claude Desktop
- Look for error messages in Claude's developer console
Expression not appearing in portal
- Make sure your API key is configured correctly
- Check that the API key has the necessary permissions (read, write)
- Check your internet connection
- Try refreshing the portal page
API key not working
- Make sure you copied the entire API key
- Check that there are no extra spaces or quotes around the key
- Create a new API key if the current one may have been compromised
Need help?
Open an issue on GitHub and we'll help you out.