|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.infisical-mcp", |
| 4 | + "name": "Infisical", |
| 5 | + "alias": "infisical", |
| 6 | + "description": "Manage secrets and projects through Infisical's official MCP server. Create, read, update, and delete secrets, manage environments, and invite team members.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/107880645?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["security", "developer-tools"], |
| 10 | + "tags": ["infisical", "secrets", "security", "environment-variables", "vault", "credentials"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@infisical/mcp"], |
| 16 | + "env": { |
| 17 | + "INFISICAL_UNIVERSAL_AUTH_CLIENT_ID": "${input:INFISICAL_UNIVERSAL_AUTH_CLIENT_ID}", |
| 18 | + "INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET": "${input:INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET}", |
| 19 | + "INFISICAL_HOST_URL": "${input:INFISICAL_HOST_URL}" |
| 20 | + }, |
| 21 | + "metadata": { |
| 22 | + "inputs": [ |
| 23 | + { |
| 24 | + "id": "INFISICAL_UNIVERSAL_AUTH_CLIENT_ID", |
| 25 | + "label": "Universal Auth Client ID", |
| 26 | + "description": "Machine Identity universal auth client ID from Infisical.", |
| 27 | + "type": "password", |
| 28 | + "required": true, |
| 29 | + "secret": true, |
| 30 | + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", |
| 31 | + "obtain": { |
| 32 | + "url": "https://app.infisical.com", |
| 33 | + "instructions": "1. Go to Infisical dashboard\n2. Navigate to Access Control > Machine Identities\n3. Create a Machine Identity with Universal Auth\n4. Copy the Client ID", |
| 34 | + "button_label": "Create Machine Identity" |
| 35 | + } |
| 36 | + }, |
| 37 | + { |
| 38 | + "id": "INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET", |
| 39 | + "label": "Universal Auth Client Secret", |
| 40 | + "description": "Machine Identity universal auth client secret from Infisical.", |
| 41 | + "type": "password", |
| 42 | + "required": true, |
| 43 | + "secret": true, |
| 44 | + "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" |
| 45 | + }, |
| 46 | + { |
| 47 | + "id": "INFISICAL_HOST_URL", |
| 48 | + "label": "Infisical Host URL", |
| 49 | + "description": "Custom Infisical host URL for self-hosted instances.", |
| 50 | + "type": "url", |
| 51 | + "required": false, |
| 52 | + "secret": false, |
| 53 | + "default": "https://app.infisical.com", |
| 54 | + "placeholder": "https://app.infisical.com" |
| 55 | + } |
| 56 | + ] |
| 57 | + } |
| 58 | + }, |
| 59 | + |
| 60 | + "auth": { |
| 61 | + "type": "api_key", |
| 62 | + "instructions": "Create a Machine Identity with Universal Auth at https://app.infisical.com and use the client ID and secret." |
| 63 | + }, |
| 64 | + |
| 65 | + "contributor": { |
| 66 | + "name": "Infisical", |
| 67 | + "github": "Infisical", |
| 68 | + "url": "https://infisical.com" |
| 69 | + }, |
| 70 | + |
| 71 | + "links": { |
| 72 | + "repository": "https://github.com/Infisical/infisical-mcp-server", |
| 73 | + "homepage": "https://infisical.com", |
| 74 | + "documentation": "https://github.com/Infisical/infisical-mcp-server#readme" |
| 75 | + }, |
| 76 | + |
| 77 | + "platforms": ["all"], |
| 78 | + |
| 79 | + "capabilities": { |
| 80 | + "tools": true, |
| 81 | + "resources": false, |
| 82 | + "prompts": false, |
| 83 | + "read_only_mode": false |
| 84 | + } |
| 85 | +} |
0 commit comments