Planner Server
БесплатноНе проверенEnables Claude to manage Microsoft Planner plans, buckets, and tasks via the Microsoft Graph API with OAuth 2.0 authentication.
Описание
Enables Claude to manage Microsoft Planner plans, buckets, and tasks via the Microsoft Graph API with OAuth 2.0 authentication.
README
A Model Context Protocol (MCP) server that enables Claude to interact with Microsoft Planner through the Microsoft Graph API.
Features
- Authentication: OAuth 2.0 device code flow for secure authentication
- Plans Management: List and view Planner plans
- Buckets Management: List, create, and manage buckets within plans
- Tasks Management: Create, update, delete, and view tasks
- Token Persistence: Stores access tokens across server restarts
Prerequisites
- Node.js 18+ or newer
- npm or yarn
- Microsoft account with access to Planner
Installation
- Clone or download this repository
- Install dependencies:
cd planner-mcp
npm install
- Build the project:
npm run build
Authentication
Before using the Planner tools, you need to authenticate:
- Start the authentication flow by calling the
auth_starttool - Visit the displayed verification URL
- Enter the provided code
- Sign in with your Microsoft account
- Use the
auth_polltool to check if authentication is complete
The access token will be saved locally and reused for future sessions.
Configuration
Option 1: Using CLI (Recommended)
claude mcp add --transport stdio planner node /path/to/planner-mcp/build/index.js
Option 2: Manual Configuration
Add this server to your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"planner": {
"command": "node",
"args": ["/path/to/planner-mcp/build/index.js"]
}
}
}
Note: Replace
/path/to/planner-mcp/build/index.jswith the actual path to your cloned repository.
Available Tools
Authentication Tools
auth_start: Start the Planner authentication flow (device code)auth_poll: Check if authentication is complete
Plan Tools
list_plans: List all Microsoft Planner plans for the current userget_plan: Get detailed information about a specific plan
Bucket Tools
list_buckets: List all buckets in a plancreate_bucket: Create a new bucket in a plan
Task Tools
list_tasks: List tasks in a plan or bucket with filtering options (priority, due date, status, etc.)get_task: Get detailed information about a specific taskcreate_task: Create a new task in a bucket with title, description, priority, and due dateupdate_task: Update an existing task (title, description, priority, bucket, due date, etc.)delete_task: Delete a task
Priority Levels:
1= Urgent (highest priority)3= Important (high priority)5= Medium (normal priority)9= Low (lowest priority)
Required Permissions
The Microsoft Graph API requires the following permissions for Planner:
Group.Read.All- To list plans and bucketsTasks.ReadWrite- To read, create, update, and delete tasks
Example Workflows
Create a new task
- List plans:
list_plans - List buckets in a plan:
list_bucketswith the plan ID - Create a task:
create_taskwith plan ID, bucket ID, title, and priority (1=urgent, 3=important, 5=medium, 9=low)
Example:
{
"planId": "your-plan-id",
"bucketId": "your-bucket-id",
"title": "Complete project proposal",
"description": "Write and submit the Q1 project proposal",
"priority": 1,
"dueDateTime": "2026-03-30T17:00:00Z"
}
Move a task to another bucket
- Get task details:
get_task - Update task:
update_taskwith the new bucket ID
Filter tasks by priority
- List tasks with priority filter:
list_taskswith plan ID and priority parameter
Example:
{
"planId": "your-plan-id",
"priority": 1
}
This will show only urgent tasks (priority 1).
Update task due date
- Get task details:
get_task - Update task:
update_taskwith the new due date in ISO 8601 format (e.g., "2025-12-31T23:59:59Z")
Troubleshooting
Authentication Issues
If authentication fails, try these steps:
- Delete the
.access-token.txtfile - Call
auth_startagain - Make sure you're using a Microsoft account that has access to Planner
"Not authenticated" Error
If you get a "Not authenticated" error:
- Make sure you've completed the authentication flow
- Check that the
.access-token.txtfile exists and contains a valid token - If the token has expired, run
auth_startagain
Permission Errors
If you get permission errors:
- Make sure your Microsoft account has access to the specified plan
- Check that the required permissions are granted in your Azure AD app
Development
Build
npm run build
Watch mode
npm run watch
Start server
npm start
License
ISC
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
Установка Planner Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/Plong-Wasin/planner-mcpFAQ
Planner Server MCP бесплатный?
Да, Planner Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Planner Server?
Нет, Planner Server работает без API-ключей и переменных окружения.
Planner Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Planner Server в Claude Desktop, Claude Code или Cursor?
Открой Planner Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Planner Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
