Rocketlane MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Rocketlane MCP or direct API to track project status, create onboarding tasks, send project updates, and manage team assignments through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Rocketlane Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Rocketlane now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Add Assignee To TaskAdd assignees to a task by task ID.
Add Field OptionTool to add a new option to a SINGLE_CHOICE or MULTIPLE_CHOICE field.
Add Followers To TaskTool to add followers to a task by Id.
Add Members to ProjectTool to add team members to a project using the projectId.
Add Members to ConversationAdd members to a conversation in Rocketlane.
Archive Project by IDArchives a specific project based on its unique identifier.
Create CommentTool to create a comment in Rocketlane.
Create CompanyCreates a new company (account) in Rocketlane.
Create ConversationCreates a new conversation in Rocketlane.
Create FieldTool to create a custom field in Rocketlane.
Create PhaseTool to create a new phase in a Rocketlane project.
Create ProjectTool to create a new project in Rocketlane.
Create SpaceCreates a new space for a given project in Rocketlane.
Create Space DocumentTool to create a new space document in Rocketlane.
Create TaskCreates a new task.
Create Time EntryTool to create a new time entry in Rocketlane.
Delete Comment By IDTool to delete a comment by its ID.
Delete ConversationTool to delete a conversation by its unique identifier.
Delete FieldTool to permanently delete a custom field using its unique identifier.
Delete PhasePermanently delete a phase from the project using its unique identifier (phaseId).
Delete ProjectThis tool allows users to permanently delete a project in Rocketlane.
Delete SpaceTool to permanently delete a space from a project by its ID.
Delete Space DocumentTool to permanently delete a space document by its ID.
Delete Task By IDDelete a specific task using its unique identifier (taskId).
Delete Time Entry by IDDelete a specific time entry using its unique identifier (timeEntryId).
Get All ConversationsTool to retrieve all conversations in Rocketlane.
Get All FieldsRetrieve all custom fields available in the system.
Get All Resource AllocationsTool to retrieve all resource allocations from Rocketlane.
Get All SpacesTool to retrieve all spaces for a specific project in Rocketlane.
Get All TasksTool to retrieve all tasks from Rocketlane with advanced filtering options.
Get All Time-OffsTool to retrieve all time-offs from Rocketlane with advanced filtering options.
Get CommentsTool to retrieve all comments from Rocketlane.
Get CompanyThis tool retrieves detailed information about a specific company/account in Rocketlane by its ID.
Get ConversationTool to retrieve detailed information about a conversation by its ID.
Get Field By IDRetrieve detailed information about a specific custom field using its unique identifier (fieldId).
Get Phase by IDTool to retrieve extensive information about a specific phase by its unique identifier.
Get Project by IDRetrieves detailed information about a specific project using its unique identifier.
Get Space by IDTool to retrieve detailed information about a specific space using its unique identifier.
Get Task By IdRetrieve extensive information about a specific task using the task's unique identifier (taskId).
Get Template By IDRetrieve detailed information about a specific template using its unique identifier (templateId).
Get Time EntriesTool to retrieve all time entries from Rocketlane.
Get Time Entry By IDRetrieve detailed information about a specific time entry using its unique identifier (timeEntryId).
Get Time Entry CategoriesTool to retrieve time entry categories from Rocketlane.
Get User By IDRetrieve detailed information about a specific user using their unique identifier (userId).
List CompaniesThis tool retrieves a list of all companies/accounts in Rocketlane.
List CurrenciesReturns a predefined list of commonly used currencies since Rocketlane API doesn't provide a dedicated currencies endpoint.
List Project PhasesThis tool retrieves a list of project phases from Rocketlane.
List ProjectsThis tool retrieves a list of all projects in the Rocketlane instance.
List TemplatesThis tool retrieves a list of all available templates in Rocketlane.
List UsersThis tool retrieves all users in the Rocketlane instance.
Move Task To Given PhaseTool to move a task to a different phase by task ID and phase ID.
Remove Assignees From TaskTool to remove assignees from a task by its unique identifier.
Remove Dependencies From TaskTool to remove dependencies from a task by ID.
Remove Followers From TaskTool to remove followers from a task by task ID.
Remove Members from ConversationRemove members from a conversation in Rocketlane.
Retrieve Subscription DetailsRetrieves detailed information about the current subscription.
Search InvoicesTool to retrieve all invoices from Rocketlane.
Search Time EntriesTool to search time entries with filters in Rocketlane.
Search User By EmailSearch User By Email Id.
Update CompanyThis tool updates an existing company/account in Rocketlane.
Update ConversationTool to update an existing conversation in Rocketlane by its ID.
Update FieldTool to update field information by ID.
Update Field OptionTool to update an existing option's label and color in a SINGLE_CHOICE or MULTIPLE_CHOICE field.
Update PhaseTool to update phase information by phase ID.
Update Project By IdUpdates an existing project's details using its unique identifier.
Update SpaceTool to update space details by its unique identifier.
Update Space DocumentTool to update a space document's properties by its unique identifier in Rocketlane.
Update Task by IDTool to update task details by ID.
Update Time Entry by IDUpdate existing time entry details using its unique identifier (timeEntryId).
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Rocketlane tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Create a new task for onboarding project Alpha')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Why Use Composio?

AI Native Rocketlane Integration

  • Supports both Rocketlane MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Rocketlane data

Managed Auth

  • Built-in API Key handling with automatic credential management
  • Central place to manage, scope, and revoke Rocketlane access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Rocketlane
  • Scoped, least privilege access to Rocketlane resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Rocketlane with Composio?

Yes, Rocketlane requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.