Taskboard MCP Server

Taskboard MCP Server

Integrates GitHub Copilot Chat with your Taskboard instance to manage workspaces, boards, lists, and cards using natural language. It supports full task lifecycle operations, searching capabilities, and knowledge base queries via RAG.

Category
Visit Server

README

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.

Installation

  1. Install dependencies:
cd mcp-server
npm install
  1. Configure environment: Create a .env file in the mcp-server directory:
# Taskboard API Configuration
TASKBOARD_API_URL=http://localhost:3000/api
TASKBOARD_AUTH_TOKEN=your_auth_token_here
MCP_SERVER_PORT=3001

Running the Server

Development

npm run dev

Production

npm start

The 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

  1. Open VS Code
  2. Go to Settings → Extensions → GitHub Copilot Chat
  3. Configure the MCP servers pointing to your local .vscode/mcp.json
  4. Ensure 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 /health

MCP 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 prompts

Example Copilot Chat Requests

  1. "List all my workspaces"
  2. "Show me boards in workspace 1"
  3. "Search for cards about authentication"
  4. "Update card 42 with description: 'In progress'"
  5. "Create a new card in list 3"
  6. "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_TOKEN is valid
  • No tools available: Verify the server is properly initialized and responding to requests
  • Port already in use: Change MCP_SERVER_PORT in .env to use a different port

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured