Taskboard MCP Server
Enables GitHub Copilot Chat to interact with a Taskboard instance, providing tools to manage workspaces, boards, lists, and cards, as well as searching and updating card information directly within the chat interface.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Taskboard MCP ServerSearch for all cards related to the authentication bug"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Taskboard MCP Server Setup
Overview
This HTTP-based MCP (Model Context Protocol) server provides GitHub Copilot Chat with access to your Taskboard instance, allowing you to manage workspaces, boards, lists, and cards directly from Copilot.
Related MCP server: Tududi MCP
Installation
Install dependencies:
cd mcp-server
npm installConfigure environment: Create a
.envfile in themcp-serverdirectory:
# Taskboard API Configuration
TASKBOARD_API_URL=http://localhost:3000/api
TASKBOARD_AUTH_TOKEN=your_auth_token_here
MCP_SERVER_PORT=3001Running the Server
Development
npm run devProduction
npm startThe server will start on http://localhost:3001
GitHub Copilot Chat Integration
The .vscode/mcp.json file configures the MCP server for GitHub Copilot Chat:
{
"mcpServers": {
"taskboard": {
"url": "http://localhost:3001",
"env": {
"TASKBOARD_API_URL": "http://localhost:3000/api",
"TASKBOARD_AUTH_TOKEN": ""
}
}
}
}Setting up Copilot Chat
Open VS Code
Go to Settings → Extensions → GitHub Copilot Chat
Configure the MCP servers pointing to your local
.vscode/mcp.jsonEnsure the MCP server is running (
npm start)
Available Tools
The MCP server exposes the following tools for Copilot Chat:
list_workspaces - List all accessible workspaces
list_boards - List boards in a workspace
list_lists - List columns/lists in a board
list_cards - List cards in a list
search_cards - Search cards by title or description
view_card - Get detailed card information
update_card_description - Update a card's description
update_card_status - Change a card's status
create_card - Create a new card
delete_card - Delete a card
get_activity - Get user activity summary
query_rag - Query the knowledge base using RAG
API Endpoints
Health Check
GET /healthMCP Endpoints
POST /mcp/v1/initialize - Initialize connection
POST /mcp/v1/tools/list - List available tools
POST /mcp/v1/tools/call - Call a specific tool
POST /mcp/v1/resources/list - List resources
POST /mcp/v1/prompts/list - List promptsExample Copilot Chat Requests
"List all my workspaces"
"Show me boards in workspace 1"
"Search for cards about authentication"
"Update card 42 with description: 'In progress'"
"Create a new card in list 3"
"Query the knowledge base about setup process"
Troubleshooting
Connection refused: Ensure the MCP server is running on port 3001
Authentication error: Check that
TASKBOARD_AUTH_TOKENis validNo tools available: Verify the server is properly initialized and responding to requests
Port already in use: Change
MCP_SERVER_PORTin.envto use a different port
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables interaction with Azure DevOps work items through AI assistants like VS Code/GitHub Copilot. Supports fetching work item details and updating work item statuses using natural language commands.
- AlicenseBqualityDmaintenanceIntegrates Tududi task management with AI development tools, enabling users to create, update, search, and organize tasks, projects, and areas directly from their IDE.95MIT
- FlicenseAqualityDmaintenanceEnables task and board management in Focalboard through natural language, supporting board operations, card creation/updates, and column movements with automatic authentication and user-friendly property names.104
- AlicenseNot gradedqualityDmaintenanceIntegrates Azure DevOps with GitHub Copilot Chat, enabling natural language queries of sprint work items, ticket summaries, and status tracking directly from VS Code without switching contexts.26MIT
Related MCP Connectors
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Connect to Atlassian Jira, Confluence, and Compass to search, create, and manage your work.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aditya020402/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server