Personal OS MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Personal OS MCPCreate a task called 'Buy groceries' with high priority"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Personal OS MCP
Independent Model Context Protocol server for the Personal OS AI API. It exposes practical, typed MCP tools over stdio and performs every real operation through the existing HTTP API.
MCP client → personal-os-mcp → Personal OS /api/v1/ai/* → Personal OS databaseThe server never connects to MySQL, imports Laravel internals, accepts a User ID, or reproduces Personal OS ownership and lifecycle logic. Personal OS remains authoritative.
Technology
Node.js 20 or newer
Node.js 22.7.5 or newer when running the current MCP Inspector
TypeScript with strict checking
Official
@modelcontextprotocol/sdk1.30Zod schemas
Native Node
fetchVitest, ESLint, and Prettier
Local
stdiotransport
Related MCP server: MCP Personal Tools Server
Setup
Personal OS must be available locally, normally at http://localhost:8080.
cd /home/lika/projects/personal-os-mcp
npm install
cp .env.example .envCreate a dedicated User-bound AI token from the Personal OS project:
cd /home/lika/projects/personal-os
docker compose exec app php artisan ai:token user@example.com --name=chatgptUse the actual account email interactively. The token is displayed once. Store it only in the local ignored .env file or a secret manager:
PERSONAL_OS_BASE_URL=http://localhost:8080
PERSONAL_OS_AI_TOKEN=replace_with_the_once_displayed_token
PERSONAL_OS_MCP_TIMEOUT_SECONDS=15Never commit, log, paste into documentation, or place a real token in .env.example.
Commands
npm run dev
npm run typecheck
npm run build
npm start
npm test
npm run lint
npm run format:checkDevelopment mode runs TypeScript directly. npm run build writes ESM output to dist; npm start runs the built stdio server.
Inspect the built server with the official MCP Inspector:
npm run build
npx @modelcontextprotocol/inspector node dist/index.jsThe server validates required environment variables at startup. Protocol messages use stdout; configuration failures use stderr without printing the token or environment.
Tools
System
personal_os_healthpersonal_os_capabilities
Tasks and Planning
personal_os_list_taskspersonal_os_get_taskpersonal_os_create_taskpersonal_os_update_taskpersonal_os_bulk_update_taskspersonal_os_complete_taskpersonal_os_reopen_taskpersonal_os_archive_taskpersonal_os_unarchive_taskpersonal_os_move_task_to_trashpersonal_os_restore_taskpersonal_os_update_task_planningpersonal_os_list_planning_taskspersonal_os_get_task_planning
Tags
personal_os_list_tagspersonal_os_get_tagpersonal_os_create_tagpersonal_os_update_tagpersonal_os_archive_tagpersonal_os_restore_tagpersonal_os_delete_tag
Containers / Lists
personal_os_list_containerspersonal_os_get_containerpersonal_os_create_containerpersonal_os_update_containerpersonal_os_archive_containerpersonal_os_restore_containerpersonal_os_delete_container
Projects
personal_os_list_projectspersonal_os_get_projectpersonal_os_create_projectpersonal_os_update_projectpersonal_os_archive_projectpersonal_os_restore_projectpersonal_os_delete_project
Collections
personal_os_list_collectionspersonal_os_get_collectionpersonal_os_create_collectionpersonal_os_update_collectionpersonal_os_archive_collectionpersonal_os_restore_collectionpersonal_os_delete_collection
A Collection is a root-level Task Container. There is no collection-item model or item mutation tool.
Notes
personal_os_list_notespersonal_os_get_notepersonal_os_create_notepersonal_os_update_notepersonal_os_complete_notepersonal_os_uncomplete_notepersonal_os_archive_notepersonal_os_restore_notepersonal_os_delete_note
Unified Items
personal_os_list_inbox_itemspersonal_os_list_archive_itemspersonal_os_list_planning_items
Reviews
personal_os_list_reviewspersonal_os_list_review_typespersonal_os_get_reviewpersonal_os_start_reviewpersonal_os_update_review_sectionpersonal_os_apply_review_actionpersonal_os_skip_review_itempersonal_os_complete_reviewpersonal_os_abandon_reviewpersonal_os_get_review_summary
Safety metadata
MCP annotations use only SDK-supported fields: readOnlyHint, destructiveHint, idempotentHint, and openWorldHint.
Confirmation is recommended for:
every permanent delete tool;
bulk Task update;
moving a Task to Trash;
archive actions;
abandoning a Review;
Review item actions because an action may mutate or delete its source.
Lifecycle meanings:
Trash: recoverable Task soft delete;
personal_os_restore_taskcan recover it.Archive: reversible removal from active views; the matching restore/unarchive action reactivates it.
Final delete: permanent and irreversible; applies to Containers, Projects, Collections, Tags, and Notes.
The MCP protocol annotations inform compatible hosts, but the server does not create a custom Accept/Reject UI.
HTTP and errors
The centralized client sends Accept: application/json, JSON bodies where applicable, and a redacted Bearer token header. It safely joins base paths, omits null/empty query values, applies a configurable timeout, validates JSON response shape, and returns structured tool errors:
authenticationfor 401authorizationfor 403not_foundfor 404 or foreign-owned IDsvalidationwith field errors for 422rate_limitedfor 429upstreamfor 5xxnetwork,timeout,invalid_json, orcontractfor transport/response failures
Only transient connection/timeout failures on GET requests are retried, at most twice after the initial attempt. Mutations are never retried automatically.
Security boundary
One local token represents exactly one Personal OS User.
The token must have the
ai:accessability andai-api:name prefix.Normal application tokens cannot call the AI namespace.
AI tokens cannot call normal User/admin endpoints.
Authorization values are never included in tool errors.
.envand.env.*are ignored except.env.example.
Known limitations
Local
stdioonly; no Streamable HTTP transport or remote deployment.No OAuth or multi-user token selector.
No Reminders, Recurrences, or Checklist mutation tools.
No ChatGPT widget, custom frontend, or Accept/Reject UI.
Tool schemas are maintained as a typed projection of Laravel routes, Form Requests, enums, Resources, and capabilities because Personal OS currently publishes no OpenAPI document.
Future stages may add the explicitly deferred domains, HTTPS remote deployment, and ChatGPT integration after their security and deployment decisions are approved.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceMCP protocol server for managing multi-project Markdown documents, supporting project isolation and LLM tool integration.Last updated29414MIT
- AlicenseBqualityDmaintenanceA simple server implementing the Model Context Protocol (MCP) that exposes personal tools like note-taking for compatible MCP clients or agents.Last updated21,967MIT
- Alicense-qualityBmaintenanceMCP server for AI agents to read, write, and organize notes in a local-first, human-in-the-loop note-taking app.Last updated181MIT
- Alicense-qualityDmaintenanceAn MCP server that wraps the Taskwarrior CLI to allow AI assistants to create, query, modify, and manage tasks directly from agentic coding tools.Last updated5MIT
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
MCP server for interacting with the Supabase platform
MCP (Model Context Protocol) server for Appwrite
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/likalg/personal-os-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server