personal-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-mcpwhat are you working on right now?"
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-mcp
Albert Yan's homepage — a website, a REST API, and an MCP server that are the same thing.
Most personal sites that claim to be "API-accessible" are a site plus a bolted-on /api
folder that drifts out of sync within a month. This one is built on a single rule:
One content graph. One contract. Three renderers. Zero duplication.
content/ holds the facts. src/core/ resolves them. src/app/ renders them as HTML, as
JSON, and as MCP. A fact about me is defined once and reachable three ways — never
implemented three times.
Talk to it
As a human
https://albertyan.devAs an agent (MCP)
claude mcp add --transport http albert https://albertyan.dev/mcpExposes MCP tools (get_profile, list_projects, get_resume, get_now, search,
leave_message), resources (albert://profile, albert://projects/{slug}, …) so a
client can attach context without spending a tool call, and prompts.
As a program (REST)
curl https://albertyan.dev/api/v1 # hypermedia root, links everything
curl https://albertyan.dev/api/v1/resume # also ?format=jsonresume
curl -H 'Accept: application/json' https://albertyan.dev/projects/<slug>Every page also answers to Accept: application/json and text/markdown, and has a .md
twin URL. Same resource, three representations — rather than a parallel /api universe.
Machine-readable entry points: /openapi.json,
/llms.txt,
/.well-known/mcp.json.
Related MCP server: mundigital
How it works
content/ source of truth — MDX + JSON, validated at build, versioned by git
↓
src/core/ domain. framework-free. the only code that reads content.
schema/ Zod, written once → TS types + build validation + OpenAPI + MCP schemas
resolvers/ getProfile(), listProjects(), getResume(), …
↓
src/app/ adapters. thin. parse → resolve → serialize.
(site)/ React Server Components → HTML
api/v1/ route handlers → JSON
api/mcp/ mcp-handler → MCPThe arrows only point one way, and that is enforced by ESLint rather than by discipline —
src/core may not import React, Next, or any adapter. See eslint.config.mjs.
There is no database. Content is typed files in git, which already provides durable storage, versioning, diffs, review, and revert for the ~200 facts that make up a person. Zod occupies the slot an ORM usually would, and does it at build time: malformed content fails CI instead of throwing in production.
Design decisions and their rationale live in docs/PLAN.md.
Develop
npm install
npm run dev # http://localhost:3000
npm run check # typecheck + lint + build — the same gate CI runscp .env.example .env.localRequires Node ≥ 20.9 (CI and production run 24).
Stack
Next.js 16 (App Router) · React 19 · TypeScript (strict, plus noUncheckedIndexedAccess) ·
Tailwind v4 · Zod · mcp-handler over the official MCP TypeScript SDK · Vercel Fluid Compute.
MCP transport is Streamable HTTP, per the current spec — not the deprecated HTTP+SSE transport. A stdio proxy is published separately for clients that need one; it holds no content of its own and therefore cannot go stale.
License
MIT for the code. The content under content/ is about a real person; please don't
misrepresent it.
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 Connectors
Public portfolio MCP for resume, services, availability, project evidence, and introductions.
AI agent website builder. Create and publish link-in-bio sites via MCP or REST API.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Personal knowledge graph as an AI memory layer over MCP - read, save, and link your memories.
Related MCP Servers
- FlicenseAqualityCmaintenanceProvides MCP-compatible AI agents with read access to a LifeOS knowledge base, exposing identity, preferences, projects, wiki, skills, and rules via tools and resources.17
- AlicenseNot gradedqualityDmaintenanceExposes a public, read-only professional profile with tools to search resume evidence, fetch curated links, and generate career briefs for LLM agents.MIT
- AlicenseNot gradedqualityAmaintenanceAggregates your digital footprint (GitHub, blogs, resume) into a single AI-readable profile and exposes it via MCP tools so AI agents can query your context live.1MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to query a person's CV and portfolio content via MCP tools and resources, returning grounded answers from local markdown data instead of relying on resume parsing.
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/adta7/personal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server