Anthropic API Key

To use Coplay with Anthropic’s AI models, you need to provide your API key. This key is essential for authenticating your requests to the Anthropic API.

Key settings

  • Coplay User: Your account email address
  • Device ID: Unique identifier for your installation device
  • Highlight Changes: When enabled, Coplay will highlight changes it makes to your projects
  • Enable Autocomplete: Activates AI-powered code completion as you type
  • Max Requests: The number of requests Coplay will make automonously before prompting you for confirmation

Custom Coplay Rules

You can also manage custom rules through the “Edit Custom Coplay Rules” button, which opens a dialog enabling you to create specialized instructions for Coplay that will be saved to .coplayrules.md in your project root folder. This will cause Coplay to include this as additional context before it takes any action

Example usage: Create custom rules like “Always comment public methods” or “Follow our team’s naming convention” to ensure Coplay adheres to your project standards.

You can also reference other files if you have pre-existing instructions / best practices: “Before any task is started, read handovernotes.md to understand the dependencies and context of the project you are working on.”

MCP Servers

Coplay supports the Model Context Protocol (MCP) for advanced AI interactions. You can configure multiple MCP servers to extend Coplay’s capabilities, such as integrating with Blender for 3D asset generation. Click the “Edit MCP Servers” button in the settings panel to manage your MCP server configurations.

For an example of how to set up a Blender MCP server, see our Blender MCP tutorial.

  {
    "mcpServers": {
      "blender-mcp": {
        "command": "uvx",
        "args": [
          "blender-mcp"
        ],
        "env": {
          "PATH": "/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
        }
      }
    }
  }