{"id":29885762,"url":"https://github.com/infisical/infisical-mcp-server","last_synced_at":"2025-12-24T18:09:46.498Z","repository":{"id":287481215,"uuid":"964772046","full_name":"Infisical/infisical-mcp-server","owner":"Infisical","description":"Infisical's official MCP server.","archived":false,"fork":false,"pushed_at":"2025-10-07T17:14:19.000Z","size":118,"stargazers_count":28,"open_issues_count":8,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-29T07:34:50.635Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Infisical.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-11T19:00:42.000Z","updated_at":"2025-10-15T15:21:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"fd4edb4a-0bb6-4a9f-bbe8-da47e68b2cf5","html_url":"https://github.com/Infisical/infisical-mcp-server","commit_stats":null,"previous_names":["infisical/infisical-mcp-server"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Infisical/infisical-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infisical%2Finfisical-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infisical%2Finfisical-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infisical%2Finfisical-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infisical%2Finfisical-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Infisical","download_url":"https://codeload.github.com/Infisical/infisical-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Infisical%2Finfisical-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28005992,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-31T16:02:30.803Z","updated_at":"2025-12-24T18:09:46.445Z","avatar_url":"https://github.com/Infisical.png","language":"JavaScript","funding_links":[],"categories":["Security"],"sub_categories":["How to Submit"],"readme":"# Infisical Model Context Protocol\n\nThe Infisical [Model Context Protocol](https://modelcontextprotocol.com/) server allows you to integrate with Infisical APIs through function calling. This protocol supports various tools to interact with Infisical.\n\n## Setup\n\n### Environment variables\n\nIn order to use the MCP server, you must first set the environment variables required for authentication.\n\n- `INFISICAL_UNIVERSAL_AUTH_CLIENT_ID`: The Machine Identity universal auth client ID that will be used for authentication\n- `INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET`: The Machine Identity universal auth client secret that will be used for authentication.\n- `INFISICAL_HOST_URL`: **Optionally** set a custom host URL. This is useful if you're self-hosting Infisical or you're on dedicated infrastructure. Defaults to `https://app.infisical.com`\n\nTo run the Infisical MCP server using npx, use the following command:\n\n```bash\nnpx -y @infisical/mcp\n```\n\n### Usage with Claude Desktop\n\nAdd the following to your `claude_desktop_config.json`. See [here](https://modelcontextprotocol.io/quickstart/user) for more details.\n\n```json\n{\n  \"mcpServers\": {\n    \"infisical\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@infisical/mcp\"],\n      \"env\": {\n        \"INFISICAL_HOST_URL\": \"https://\u003ccustom-host-url\u003e.com\", // Optional\n        \"INFISICAL_UNIVERSAL_AUTH_CLIENT_ID\": \"\u003cmachine-identity-universal-auth-client-id\u003e\",\n        \"INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET\": \"\u003cmachine-identity-universal-auth-client-secret\"\n      }\n    }\n  }\n}\n```\n\n## Available tools\n\n| Tool                        | Description                             |\n| --------------------------- | --------------------------------------- |\n| `create-secret`             | Create a new secret                     |\n| `delete-secret`             | Delete a secret                         |\n| `update-secret`             | Update a secret                         |\n| `list-secrets`              | Lists all secrets                       |\n| `get-secret`                | Get a single secret                     |\n| `create-project`            | Create a new project                    |\n| `create-environment`        | Create a new environment                |\n| `create-folder`             | Create a new folder                     |\n| `invite-members-to-project` | Invite one or more members to a project |\n\n## Debugging the Server\n\nTo debug your server, you can use the [MCP Inspector](https://modelcontextprotocol.io/docs/tools/inspector).\n\nFirst build the server\n\n```bash\nnpm run build\n```\n\nRun the following command in your terminal:\n\n```bash\n# Start MCP Inspector and server\nnpx @modelcontextprotocol/inspector node dist/index.js\n```\n\n### Instructions\n\n1. Set the environment variables as described in the [Environment Variables ](#environment-variables) step.\n2. Run the command to start the MCP Inspector.\n3. Open the MCP Inspector UI in your browser and click Connect to start the MCP server.\n4. You can see all the available tools and test them individually.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfisical%2Finfisical-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfisical%2Finfisical-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfisical%2Finfisical-mcp-server/lists"}