--- # generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "litellm_mcp_server Data Source - terraform-provider-litellm" subcategory: "" description: |- Retrieves information about an existing LiteLLM MCP server. --- # litellm_mcp_server (Data Source) Retrieves information about an existing MCP server via `/v1/mcp/server/{server_id}`. Secret material (environment variables, credentials, and static header values) is never exposed. ## Example Usage ```terraform data "litellm_mcp_server" "github" { server_id = "srv-1234" } output "github_mcp_url" { value = data.litellm_mcp_server.github.url } ``` ## Argument Reference The following arguments are supported: * `server_id` - (Required) Unique identifier of the MCP server to retrieve. ## Attributes Reference In addition to all arguments above, the following attributes are exported: * `server_name` - Name of the MCP server. * `alias` - Alias for the MCP server. * `description` - Description of the MCP server. * `url` - URL of the MCP server. * `transport` - Transport type (`http`, `sse`, `stdio`). * `spec_version` - MCP specification version. * `auth_type` - Authentication type (`none`, `bearer`, `basic`, ...). * `mcp_access_groups` - Access groups for the MCP server. * `allowed_tools` - Tools allowed on this server. * `extra_headers` - Names of request headers forwarded to the MCP server. * `command` - Command for stdio transport. * `args` - Arguments for the command (stdio transport). * `allow_all_keys` - Whether all keys can access the server. * `status` - Health status (`healthy`, `unhealthy`, `unknown`). * `last_health_check` - Timestamp of the last health check. * `health_check_error` - Error message from the last health check, if any. * `created_at` - Timestamp when the server was created. * `created_by` - User who created the server. * `updated_at` - Timestamp when the server was last updated. * `updated_by` - User who last updated the server. ## Security Note For security reasons, `env`, `credentials`, and `static_headers` are not exposed through this data source since they may hold secrets.