habitica_mcp_server
Verified Safeby roland-kiraly
Overview
An MCP server that enables clients to interact with the Habitica API for task and stat management.
Installation
npm run devEnvironment Variables
- HABITICA_USER_ID
- HABITICA_API_TOKEN
Security Notes
The server code itself is straightforward, acting as an API wrapper without 'eval', obfuscation, or obvious malicious patterns. Hardcoded secrets are avoided by requiring environment variables. The primary security considerations are the secure handling of HABITICA_USER_ID and HABITICA_API_TOKEN environment variables in the deployment environment and the trustworthiness of the MCP client spawning this server via stdio.
Similar Servers
mcp_server
This server implements the Model Context Protocol (MCP) to expose developer-defined tools as a HTTP API, specifically demonstrating a task creation tool.
header-test-mcp
An MCP server designed for debugging custom header implementations in MCP hosts/clients by providing a tool to retrieve request headers.
ticktick-http-mcp
Provides a simple HTTP API wrapper for specific TickTick functionalities, acting as a Micro-Capability Platform (MCP).
todoist-mcp-lite
Minimal MCP server for direct access and passthrough to the Todoist REST API, allowing LLMs to manage tasks and projects.