---
title: "Asana Integration"
description: "Manage Asana workspaces, projects, sections, tasks, stories, users, and teams"
---
The Asana integration provides access to manage Asana workspaces, projects, sections, tasks, stories, users, and teams through the Integrate MCP server.

## Installation

The Asana integration is included with the SDK:

```typescript
import { asanaIntegration } from "integrate-sdk/server";
```

## Setup

### 1. Create an Asana OAuth App

1. Create an OAuth application for Asana
2. Configure your redirect URI
3. Note your Client ID and Client Secret

### 2. Configure the Integration on Your Server

Add the Asana integration to your server configuration. The integration automatically reads `ASANA_CLIENT_ID` and `ASANA_CLIENT_SECRET` from your environment variables:

```typescript
import { createMCPServer, asanaIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    asanaIntegration({
    }),
  ],
});
```

You can override the environment variables by passing explicit values:

```typescript
asanaIntegration({
  clientId: process.env.CUSTOM_ASANA_ID,
  clientSecret: process.env.CUSTOM_ASANA_SECRET,
});
```

### 3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

```typescript
import { client } from "integrate-sdk";

await client.authorize("asana");
const result = await client.asana.getCurrentUser({});

console.log(result);
```

If you're using a custom client, add the integration to the integrations array:

```typescript
import { createMCPClient, asanaIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [asanaIntegration()],
});
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/asana.ts"
  name="AsanaIntegrationConfig"
/>


## Tools

### `asana_get_current_user`

Get current user

_No parameters._

### `asana_list_workspaces`

List workspaces

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaListWorkspacesParams"
/>

### `asana_list_projects`

List projects

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaListProjectsParams"
/>

### `asana_get_project`

Get project

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaGetProjectParams"
/>

### `asana_create_project`

Create project

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaCreateProjectParams"
/>

### `asana_update_project`

Update project

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaUpdateProjectParams"
/>

### `asana_list_sections`

List sections

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaListSectionsParams"
/>

### `asana_list_tasks`

List tasks

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaListTasksParams"
/>

### `asana_get_task`

Get task

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaGetTaskParams"
/>

### `asana_create_task`

Create task

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaCreateTaskParams"
/>

### `asana_update_task`

Update task

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaUpdateTaskParams"
/>

### `asana_delete_task`

Delete task

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaDeleteTaskParams"
/>

### `asana_list_stories`

List stories

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaListStoriesParams"
/>

### `asana_create_story`

Create story

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaCreateStoryParams"
/>

### `asana_list_users`

List users

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaListUsersParams"
/>

### `asana_list_teams`

List teams

<AutoTypeTable
  path="generated/tool-params/asana.ts"
  name="AsanaListTeamsParams"
/>

## Notes

- Category: Productivity
- Authentication mode: OAuth
