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
最后更新
2026年7月12日