MCP Server Installation

Install and configure the Aki UI MCP server for your AI development workflow.

Installation Methods

Install from npm

The easiest way to install the Aki UI MCP server is through npm:

Global Installation (Recommended)

npm install -g @akitectio/aki-ui-mcp-server

Local Installation

npm install @akitectio/aki-ui-mcp-server

Verify Installation

aki-ui-mcp --version

Configuration

Claude Desktop Configuration

Add the MCP server to your Claude Desktop configuration:

1. Open Claude Desktop Settings

Navigate to Settings → Developer → MCP Servers

2. Add Configuration

{
  "mcpServers": {
    "aki-ui": {
      "command": "aki-ui-mcp",
      "args": [],
      "env": {}
    }
  }
}

3. Restart Claude Desktop

Restart the application to load the new MCP server configuration.

Cursor IDE Configuration

Configure Cursor IDE to use the Aki UI MCP server:

1. Open Cursor Settings

Go to Preferences → Extensions → MCP

2. Add Server Configuration

{
  "mcp": {
    "servers": [
      {
        "name": "aki-ui",
        "command": "aki-ui-mcp",
        "args": ["--port", "3000"]
      }
    ]
  }
}

VS Code with Continue.dev

Use the MCP server with Continue.dev extension in VS Code:

1. Install Continue.dev Extension

code --install-extension continue.continue

2. Configure Continue.dev

Edit .continue/config.json:

{
  "models": [...],
  "mcpServers": [
    {
      "name": "aki-ui",
      "command": "aki-ui-mcp",
      "args": []
    }
  ]
}

Environment Variables

Configure the MCP server behavior using environment variables:

VariableDefaultDescription
MCP_PORT3000Port for MCP server
MCP_HOSTlocalhostHost address
LOG_LEVELinfoLogging level (debug, info, warn, error)
CACHE_TTL3600Cache time-to-live in seconds

Example .env file:

MCP_PORT=3001
LOG_LEVEL=debug
CACHE_TTL=7200

Verify Installation

1. Check Server Status

aki-ui-mcp --status

2. Test MCP Connection

aki-ui-mcp --test

3. List Available Tools

aki-ui-mcp --list-tools

Expected Output

✓ Aki UI MCP Server v1.1.4
✓ Connection: OK
✓ Available tools: 15
✓ Ready to use with AI assistants

Troubleshooting

Common Issues

Command not found: aki-ui-mcp

The global installation didn't add the command to your PATH.

Solution: Try running with npx: npx @akitectio/aki-ui-mcp-server

Permission denied during installation

Insufficient permissions for global installation.

Solution: Use sudo: sudo npm install -g @akitectio/aki-ui-mcp-server

MCP server not responding

The server may not be running or configured correctly.

Solution: Check the logs: aki-ui-mcp --logs

Getting Help

If you encounter issues not covered here:

DocsCheck the usage guide for examples

Next Steps