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.
Conectar
Añade esta configuración a .claude/mcp.json
{
"mcpServers": {
"infisical": {
"command": "npx",
"args": [],
"env": {
"INFISICAL_CLIENT_ID": "<YOUR_INFISICAL_CLIENT_ID>",
"INFISICAL_CLIENT_SECRET": "<YOUR_INFISICAL_CLIENT_SECRET>"
}
}
}
}Herramientas (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"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Estrellas
- 0
- Última actualización
- 12 de julio de 2026