Smithery

org.owner.project.new.create

Creates a new project within the authenticated user's organization using the specified name. Projects are isolated environments within your organization, each with their own API keys, webhook configurations, and resources. Use this endpoint to create additional projects for different environments (e.g., development, staging, production) or for separate applications.

Remote smithery/composio

Other tools also called org.owner.project.new.create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "my-awesome-project",
      "pattern": "^[a-zA-Z0-9_-]+$",
      "maxLength": 75,
      "minLength": 3,
      "description": "A unique name for your project that follows the required format rules"
    },
    "config": {
      "type": "object",
      "required": [
        "is_2FA_enabled",
        "mask_secret_keys_in_connected_account",
        "log_visibility_setting"
      ],
      "properties": {
        "logo_url": {
          "type": "string"
        },
        "display_name": {
          "type": "string"
        },
        "is_2FA_enabled": {
          "type": "boolean"
        },
        "require_mcp_api_key": {
          "type": "boolean"
        },
        "log_visibility_setting": {
          "enum": [
            "show_all",
            "dont_store_data"
          ],
          "type": "string"
        },
        "signed_url_file_expiry_in_seconds": {
          "type": "number",
          "maximum": 86400,
          "minimum": 1
        },
        "mask_secret_keys_in_connected_account": {
          "type": "boolean"
        },
        "is_composio_link_enabled_for_managed_auth": {
          "type": "boolean",
          "description": "Whether to enable composio link for managed authentication. This key will be deprecated in the future. Please don't use this key."
        }
      },
      "description": "Configuration for the project"
    },
    "should_create_api_key": {
      "type": "boolean",
      "default": false,
      "example": false,
      "description": "Whether to create an API key for the project. If true, the API key will be created and returned in the response."
    }
  }
}