For Business Analysts, Product Managers, and other non-technical users
This guide shows you how to connect any MCP-compatible AI tool to your organization's Haiven AI system.
- An MCP-compatible AI tool installed on your computer
- Access to your organization's Haiven system (the web version)
- 15-20 minutes for setup
After setup, you can:
- Use Haiven prompts directly from your AI tool
- Execute prompts with your own input
- Get all Haiven's AI capabilities without switching apps
- Keep your conversation context while using Haiven tools
Want the easiest setup? Copy the configuration from the README.md and add it to your AI tool's MCP settings.
For automated setup:
# Clone and setup
git clone https://github.com/tw-haiven/haiven-mcp-server
cd haiven-mcp-server
sh ./scripts/install.sh- Open Haiven in your browser (the web version your organization uses)
- Login with your work credentials (OKTA/SSO)
- Click "API Keys" in the top navigation menu
- Click "Generate New API Key"
- Fill out the form:
- Name: "AI Tool Integration"
- Expiration: 30 days (or your preference)
- Copy the generated key - Save it immediately! You won't see it again
- Store it safely (password manager recommended)
Prerequisites:
- Docker installed on your computer
Why Docker is recommended:
- No Python installation required
- No dependency management needed
- Works consistently across all platforms
- Easy to update and maintain
- Isolated environment (more secure)
Prerequisites:
- Python 3.11+ installed
Use this option if:
- Your organization doesn't allow Docker
- You prefer to run the server locally
- You need to customize the setup
- Download Docker Desktop from docker.com
- Install and start Docker Desktop
- Verify installation: Open terminal and run
docker --version
Alternative for Mac users: Colima
brew install colima
brew install docker
colima startAdd the MCP server configuration from the README.md to your AI tool's MCP settings.
docker run -i --rm \
-e HAIVEN_API_KEY="your-api-key" \
-e HAIVEN_API_URL="https://your-haiven-server.com" \
ghcr.io/tw-haiven/haiven-mcp-server:latest- Windows: Download from python.org
- Mac:
brew install python@3.11 - Linux:
sudo apt update && sudo apt install python3.11
# Clone and setup
git clone https://github.com/tw-haiven/haiven-mcp-server
cd haiven-mcp-server
sh ./scripts/install.shThe installer will generate configuration files. Add the generated configuration to your AI tool's MCP settings.
- Restart your AI tool
- Ask: "What Haiven prompts are available?"
- You should see prompts from your Haiven system
- Troubleshooting: See TROUBLESHOOTING.md
- IT Support: Ask your IT team for help with technical setup
- Haiven Admin: Contact your Haiven administrator for API key issues
MCP Setup Resources:
- VS Code MCP Servers - Comprehensive guide for VS Code
- Claude Code MCP - Official Claude documentation
- Cursor MCP Setup - Cursor-specific instructions
- MCP Protocol Overview - General MCP concepts