AI Note MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AINOTE_API_KEY | Yes | Your AI Note API key (required) | |
| AINOTE_API_URL | No | Target AI Note API base URL | https://ainote-5muq.onrender.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_tasksC | List tasks from AI Note |
| create_taskC | Create a new task in AI Note |
| update_taskC | Update an existing task |
| delete_taskB | Delete a task (soft delete) |
| list_categoriesC | List all categories |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a distinct purpose with no overlap: create_task, delete_task, update_task handle task lifecycle operations, while list_tasks and list_categories handle retrieval of different resource types. The descriptions clearly differentiate between task management and category listing, eliminating any ambiguity.
All tools follow a consistent verb_noun pattern using snake_case: create_task, delete_task, list_categories, list_tasks, update_task. The naming convention is perfectly uniform throughout the set, making it predictable and easy to understand.
With 5 tools, this server is well-scoped for a task management domain. The count is appropriate as it covers core CRUD operations for tasks (create, list, update, delete) plus category listing, without being too sparse or bloated. Each tool serves a clear purpose in the workflow.
The tool set provides complete CRUD coverage for tasks and includes category listing, covering the essential lifecycle operations. A minor gap exists in category management (e.g., create/update/delete categories), but agents can still perform core task workflows effectively with the available tools.