get_integration_status
Check if a project has an active Jira, Linear, Asana, monday, or GitHub integration, and optionally retrieve the fields needed to create an external issue.
Instructions
Reports whether a third-party integration (Jira, Linear, Asana, monday.com, GitHub) is connected for a project. Call this before create_external_issue or connect_integration to check whether the provider is already active. Set includeCreateOptions to true to also fetch the fields available for issue creation (provider projects, issue types, required/optional/custom fields).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | No | Provider-specific target/field values (optional) used to resolve createOptions against a specific target instead of the provider default. Examples: Jira { jiraProjectKey, issueType }, Linear { teamId }, Asana { workspaceId, projectId }, monday { boardId }. | |
| provider | Yes | Integration provider to check (Required). | |
| projectId | Yes | Project ID (Required). The TestDino project identifier. | |
| includeCreateOptions | No | When true, the response also includes createOptions: provider projects, issue types, and required/optional/custom fields for create_external_issue. |