Taskeract MCP Server

Created By
Acqusys, LLCa year ago
Feed your MCP client context from your Taskeract projects.
Overview

Taskeract MCP Server

What is the MCP Server?

The Taskeract MCP (Model Context Protocol) server is a tool that integrates your Taskeract tasks directly with your IDE. It allows you to view, access, and update tasks without leaving your development environment.

Prerequisites

Before setting up the MCP server, ensure you have:

  • Node.js installed (version 16 or later)
  • A Taskeract account with a paid plan
  • An API key from Taskeract

Getting an API Key:

  1. Log in to your Taskeract account
  2. Navigate to "Account" > "API Keys"
  3. Click "Create API Key" and give it a name
  4. Copy the API key

Working with Tasks in Your IDE

Once the MCP server is running and connected to your IDE, you can seamlessly interact with Taskeract through your IDE's AI assistant. Here's what you can do:

Action Description Example Command View Projects Request a list of all projects available in you

ActionDescriptionExample Command
View ProjectsRequest a list of all projects available in your Taskeract account"Show me my Taskeract projects"
List TasksGet all tasks for a specific project, optionally filtered by status"List tasks in Project X"
Start WorkingBegin work on a specific task, automatically updating its status to "in progress" and loading all relevant context into your editor"I want to start working on task PROJ-123"
Ready for ReviewMark a task as ready for review when your implementation is complete"Mark task PROJ-123 as ready for review"

Context Loading

When you start a task, the MCP server provides your IDE's AI with comprehensive context including:

  • The task's description and requirements
  • The parent story's user-focused perspective
  • The feature's acceptance criteria
  • The project's technical rules and specifications
  • Related code structures and patterns

This enables the AI to generate more accurate, contextually aware code suggestions tailored to your specific task and project requirements.

Server Config

{
  "mcpServers": {
    "taskeract": {
      "command": "npx",
      "args": [
        "@taskeract/mcp"
      ],
      "env": {
        "TASKERACT_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}
Project Info
Created At
a year ago
Updated At
a year ago
Author Name
Acqusys, LLC
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Tavily Mcp
@tavily-ai

JavaScript
a year ago
AI Work Market — USDC settlement rails for AI labor on Base Mainnet)
@Dario (DME)

AI Work Market is a USDC escrow protocol on Base Mainnet, designed for autonomous AI agents to find work, post jobs, and settle payments without humans in the loop. This MCP server exposes 10 tools: **Escrow lifecycle** - `create_intent_quote` — get calldata + gas estimate for funding a new escrow intent - `submit_proof_quote` — get calldata for the seller to submit a proof URI - `release_funds_quote` — get calldata for the buyer to release payment (or claim/refund) **x402 single-call binding** - `x402_consume` — replaces the 5-step x402 flow with one HMAC-signed POST that returns a delivery URL **Onboarding & discovery** - `agent_onboard` — generate a signed agent card with marketplace attestation - `agent_search` — tf-idf search over the live agent catalog - `agent_reputation` — server-side reputation from on-chain Released/Refunded/Disputed events **Live state** - `system_status` — live on-chain state (nextIntentId, accumulatedFees, contract balance, owner) - `escrow_rules` — contract semantics, lifecycle, call guides, failure modes - `events_subscribe` — SSE stream of new on-chain intent events All endpoints are serverless (Vercel) and return their schema on GET. No browser, no wallet UI required for an agent to integrate. The protocol takes a 1% commission on every settlement; the rest goes to the seller. The full AgentCard is at `/.well-known/agent-card.json` (A2A-compatible). The OpenAPI 3.0.3 spec is at `/.well-known/openapi.json` with `components.securitySchemes` (none, hmacX402). `robots.txt` allows GPTBot, ClaudeBot, anthropic-ai, PerplexityBot, Google-Extended, Applebot-Extended, CCBot, Amazonbot.

5 hours ago