StellaryStellary
FeaturesHow It WorksWhy StellaryBlog
Overview
Concepts & architecture
Getting Started
Your first project in 5 min
API Reference
Complete REST API docs
MCP Integration
Connect AI agents
FAQ
Sign inStart Free
FeaturesHow It WorksWhy StellaryBlog
Documentation
Overview
Concepts & architecture
Getting Started
Your first project in 5 min
API Reference
Complete REST API docs
MCP Integration
Connect AI agents
?
FAQ
Sign inStart Free
StellaryStellary

The AI-powered command center for teams that ship.

Product

  • Features
  • How It Works
  • Why Stellary
  • Blog
  • FAQ

Developers

  • Documentation
  • API Reference
  • MCP Integration
  • Getting Started

Company

  • FAQ
  • Legal Notice
  • Terms of Service
  • Privacy Policy
  • Cookie Policy
  • DPA

© 2026 Stellary. All rights reserved.

Legal NoticeTerms of ServicePrivacy PolicyCookie PolicyDPA
Back to blog
guidemcpai

How to Connect AI Agents to Stellary via MCP

A practical guide to integrating AI agents with your Stellary workspace using the Model Context Protocol.

Stellary TeamMarch 28, 20263 min read
How to Connect AI Agents to Stellary via MCP

The Model Context Protocol (MCP) is the bridge between your AI agents and your Stellary workspace. In this guide, we'll walk through the complete setup — from generating your API token to having your first agent propose actions on your board.

What is MCP?

MCP is an open protocol that lets AI models interact with external tools and data sources in a standardized way. Think of it as a universal adapter: any MCP-compatible agent can connect to any MCP-compatible tool without custom integration code.

Stellary implements MCP natively, which means your workspace becomes a rich context source that agents can read from and act upon. For a deeper dive into what MCP is and why it matters, see MCP Explained.

Prerequisites

Before you begin, make sure you have:

  • A Stellary workspace with at least one project
  • An API token (generated from Settings > API Tokens)
  • An MCP-compatible AI agent (Claude, GPT, or any custom agent)

Step 1: Generate Your API Token

Navigate to your workspace settings and create a new API token. Give it a descriptive name — you'll want to know which agent is using which token.

bash
# You can also create tokens via the API
curl -X POST https://api.stellary.co/v1/api-tokens \
-H "Authorization: Bearer YOUR_SESSION_TOKEN" \
-d '{"name": "My Claude Agent", "scopes": ["read", "write"]}'

The response will include your token. Store it securely — it won't be shown again.

Step 2: Configure Your Agent

Point your agent's MCP configuration to your Stellary workspace. The exact setup depends on your agent, but the core configuration looks like this:

json
{
"mcpServers": {
"stellary": {
"url": "https://api.stellary.co/v1/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}

Step 3: Verify the Connection

Once configured, your agent should be able to list available tools. You'll see tools for reading your board, creating cards, updating priorities, and more.

Available MCP Tools

Stellary exposes a comprehensive set of tools through MCP:

  • Board tools — list columns, create/update/move cards, manage labels
  • Doc tools — read and create documents, trigger review workflows
  • Cockpit tools — read missions, log decisions, propose actions
  • Project tools — list projects, read settings, manage members

Best Practices

Here are some tips for getting the most out of MCP integration:

  • Start with read-only scopes — let your agent observe before it acts
  • Use the cockpit for proposals — agents should propose actions, not execute them directly
  • Monitor agent activity — check the automation traces to see what your agents are doing
  • Set up approval workflows — require human approval for destructive actions

What's Next

Now that your agent is connected, explore our guide on setting up automations to let your agent work autonomously within safe boundaries.

Share

You might also like

MCP Explained: Why It Matters for AI Tools

A clear explanation of what MCP is, how it works, and why it's becoming the standard for connecting AI agents to external tools and data sources.

Mar 5, 20265 min read

What Is AI Project Management? Guide for 2026

How AI transforms project management — from automated task assignment to intelligent decision support. Tools, benefits, and getting started.

Mar 25, 20264 min read
PreviousWhat Is AI Project Management? Guide for 2026NextIntroducing Stellary: Your AI-Powered Command Center
Get started

Ready to pilot your projects with AI?

Stellary brings together your board, docs, and AI agents in one command center.

Start FreeRead the docs
3 min read
On this page
  • What is MCP?
  • Prerequisites
  • Step 1: Generate Your API Token
  • Step 2: Configure Your Agent
  • Step 3: Verify the Connection
  • Available MCP Tools
  • Best Practices
  • What's Next