aiproject-mcp
MCP server for managing AIProject tasks and projects, providing CRUD operations for projects, tasks, and assignments with API key authentication.
README
AIProject MCP Server
This MCP server wraps the AIProject project/task API described in api.md.
Run
npm install
npm run build
npm start
Use aiproject-mcp as a stdio MCP server after build.
MCP Config
Local build:
{
"mcpServers": {
"aiproject": {
"command": "C:\\ServBay\\bin\\node.cmd",
"args": [
"C:\\Users\\Onur\\Desktop\\mcp\\dist\\src\\index.js"
],
"env": {
"AIPROJECT_BASE_URL": "http://127.0.0.1:8000/",
"AIPROJECT_API_KEY": "<API_KEY>"
}
}
}
}
After npm publish:
{
"mcpServers": {
"aiproject": {
"command": "npx",
"args": [
"-y",
"aiproject-mcp"
],
"env": {
"AIPROJECT_BASE_URL": "http://127.0.0.1:8000/",
"AIPROJECT_API_KEY": "<API_KEY>"
}
}
}
}
Credentials
The server reads credentials from environment variables:
AIPROJECT_BASE_URL: API root or app root. Bothhttp://127.0.0.1:8000andhttp://127.0.0.1:8000/api/v1are accepted. If the app root is supplied,/api/v1is appended automatically.AIPROJECT_API_KEY: API key sent asX-API-Key.
Every MCP tool also accepts optional credential overrides in its input:
baseUrl: OverrideAIPROJECT_BASE_URLfor one call.apiKey: OverrideAIPROJECT_API_KEYfor one call.
Tools
aiproject_get_me:GET /me; verify the API key and return the current user.aiproject_list_projects:GET /projects; paginated project summaries.aiproject_create_project:POST /projects; create a project withname,github_url,clickup_url.aiproject_get_project:GET /projects/{project}; get one project.aiproject_update_project:PUT /projects/{project}; full project update, all project fields required.aiproject_delete_project:DELETE /projects/{project}; deletes the project and its tasks.aiproject_list_tasks:GET /projects/{project}/tasks; paginated task summaries. Does not returncontent.aiproject_create_task:POST /projects/{project}/tasks; create a task with longcontentand assignments. Returns summary withoutcontent.aiproject_get_task:GET /projects/{project}/tasks/{task}; the only task read tool that returns longcontent.aiproject_update_task:PUT /projects/{project}/tasks/{task}; full task update. The sent assignments replace the old list. Returns summary withoutcontent.aiproject_delete_task:DELETE /projects/{project}/tasks/{task}; deletes the task and assignments.aiproject_update_assignment_status:PATCH /projects/{project}/tasks/{task}/assignments/{type}; update one existing team status. It does not create missing assignments.
Usage Guidance
List tasks first with aiproject_list_tasks because it returns lightweight summaries. Call aiproject_get_task only for the specific task whose long content must be read.
Use aiproject_update_assignment_status when only one team's status changes. Use aiproject_update_task when the title, content, or assignment team list changes.
Test
npm test
By default, the integration test calls http://127.0.0.1:8000/api/v1/me through MCP with a dummy API key and expects the documented 401 auth response. To test with a real key:
$env:AIPROJECT_BASE_URL = "http://127.0.0.1:8000/"
$env:AIPROJECT_API_KEY = "<API_KEY>"
npm test
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.