Infisical MCP Server

Securitystdio
Репозиторий

Infisical's official MCP server for its open-source secret management platform. Lets AI agents list projects and environments and create, read, update, and delete secrets and folders through controlled tools, so assistants can help manage application configuration without exposing raw credentials in code. Authenticates using a machine identity.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

{
  "mcpServers": {
    "infisical": {
      "command": "npx",
      "args": [],
      "env": {
        "INFISICAL_CLIENT_ID": "<YOUR_INFISICAL_CLIENT_ID>",
        "INFISICAL_CLIENT_SECRET": "<YOUR_INFISICAL_CLIENT_SECRET>"
      }
    }
  }
}

Инструменты (2)

list_secrets

List secrets in a given Infisical project, environment, and path.

{
  "type": "object",
  "required": [
    "projectId",
    "environment"
  ],
  "properties": {
    "projectId": {
      "type": "string",
      "description": "Infisical project ID"
    },
    "secretPath": {
      "type": "string",
      "description": "Folder path (defaults to /)"
    },
    "environment": {
      "type": "string",
      "description": "Environment slug (e.g. dev, staging, prod)"
    }
  }
}

create_secret

Create a new secret in an Infisical project environment.

{
  "type": "object",
  "required": [
    "projectId",
    "environment",
    "secretName",
    "secretValue"
  ],
  "properties": {
    "projectId": {
      "type": "string",
      "description": "Infisical project ID"
    },
    "secretName": {
      "type": "string",
      "description": "Name of the secret"
    },
    "environment": {
      "type": "string",
      "description": "Environment slug"
    },
    "secretValue": {
      "type": "string",
      "description": "Value of the secret"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Infisical (@Infisical)
Репозиторий
https://github.com/Infisical/infisical-mcp-server
Звёзды
0
Последнее обновление
12 июля 2026 г.