We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/launchdarkly/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
featureflagstatus.md•2.61 KiB
# FeatureFlagStatus
## Example Usage
```typescript
import { FeatureFlagStatus } from "@launchdarkly/mcp-server/models/components";
let value: FeatureFlagStatus = {
name: "inactive",
lastRequested: new Date("2020-02-05T18:17:01.514Z"),
};
```
## Fields
| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
| `name` | [components.Name](../../models/components/name.md) | :heavy_check_mark: | Status of the flag | inactive |
| `lastRequested` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | Timestamp of last time flag was requested | 2020-02-05T18:17:01.514Z |
| `default` | *any* | :heavy_minus_sign: | Default value seen from code | |