Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/integrations/mcp-servers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ MCP servers are configured per repository using a JSON configuration file. The c
- **Access controls** - Specify permissions and security settings
- **Environment variables** - Configure server-specific settings and secrets

### Server Naming Requirements

MCP server names must follow strict naming conventions to ensure compatibility:

- **Allowed characters**: Only alphanumeric characters (a-z, A-Z, 0-9), hyphens (-), and underscores (_)
- **Length limit**: Maximum 128 characters
- **Pattern**: Must match the regex `^[a-zA-Z0-9_-]{1,128}$`

<Warning>
Server names containing dots (.), spaces, or other special characters will cause connection failures. For example, `awslabs.aws-documentation-mcp-server` should be renamed to `awslabs-aws-documentation-mcp-server`.
</Warning>

## Permissions

The Codegen MCP integration requires the following permissions:
Expand Down