Infisical MCP Server

Securitystdio
Repository

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.

Connect

Add this configuration to .claude/mcp.json

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

Tools (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"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Infisical (@Infisical)
Repository
https://github.com/Infisical/infisical-mcp-server
Stars
0
Last Updated
July 12, 2026