selfmcp

selfmcp

A personal MCP server that exposes your profile (bio, skills, projects, work experience) as structured tools for any MCP-compatible AI client, secured with OAuth 2.1 and Dynamic Client Registration.

Category
访问服务器

README

selfMCP

A personal Model Context Protocol (MCP) server. It exposes a profile — bio, skills, projects, work experience — as structured tools that any MCP-compatible AI client (Claude, ChatGPT, Codex) can query directly, secured with OAuth 2.1 and Dynamic Client Registration (DCR, RFC 7591) so clients can connect without any manually-issued API key.

Stack

  • Node.js + TypeScript + Express
  • SQLite via node:sqlite (Node's built-in driver, stable as of Node 22.5+) — no native addon compilation required, so npm install works out of the box on any machine, including one without build tools installed
  • @modelcontextprotocol/sdk for the MCP protocol itself (Streamable HTTP transport) and for the full OAuth 2.1 authorization server implementation (mcpAuthRouter), including Dynamic Client Registration
  • jose for signing/verifying access tokens (stateless JWTs)
  • EJS for the landing page and OAuth consent screen — no frontend build step

Project layout

src/
  config/env.ts        Environment variable loading + validation (zod)
  db/                   SQLite schema, seed script, and typed repository functions
  mcp/
    server.ts           Builds an McpServer and registers tools
    tools/               get_bio, list_skills, list_projects, search_projects, list_experience
    router.ts            Mounts the Streamable HTTP transport at POST /mcp
  oauth/
    store.ts             SQLite-backed OAuthRegisteredClientsStore (handles DCR persistence)
    provider.ts           Implements the SDK's OAuthServerProvider interface
    tokens.ts              JWT access tokens + hashed, rotating refresh tokens
    consent.ts             Signs/verifies the short-lived consent-screen round trip
  web/
    routes.ts             Landing page (GET /) and consent decision handler (POST /consent)
    views/                 landing.ejs, consent.ejs
  app.ts                 Wires everything into one Express app
  server.ts              Entry point
public/style.css        Landing page styling

Getting started

npm install
cp .env.example .env

Generate a signing secret and put it in .env as TOKEN_SIGNING_SECRET:

node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"

Edit src/db/seed.ts with your real name, bio, skills, projects, and experience, then run:

npm run seed
npm run dev

The server listens on http://localhost:3000 by default. Visit it in a browser to see the landing page, or run npm run inspector in another terminal to poke the MCP endpoint directly with the official MCP Inspector.

Scripts

Script Purpose
npm run dev Run with hot reload (tsx watch)
npm run build Compile TypeScript to dist/
npm start Run the compiled build (node dist/server.js)
npm run seed (Re-)populate the database from src/db/seed.ts
npm run typecheck tsc --noEmit
npm run lint ESLint
npm run format Prettier (writes)
npm run inspector Launch the MCP Inspector dev tool

How the OAuth / DCR flow works

This server is both the MCP resource server and its own OAuth 2.1 authorization server, built on the SDK's mcpAuthRouter:

  1. Discovery — clients fetch /.well-known/oauth-authorization-server and /.well-known/oauth-protected-resource/mcp to learn where to register and authenticate.
  2. Registration (DCR)POST /register lets any client dynamically obtain a client_id (RFC 7591), no pre-registration or manual API key needed.
  3. AuthorizationGET /authorize renders a consent screen (src/web/views/consent.ejs). The pending request (client, redirect URI, PKCE challenge, scope, state) is carried in a short-lived signed JWT in a hidden form field rather than server-side session state, since there's nothing else to persist between the redirect and the user's click.
  4. Consent decisionPOST /consent issues a one-time authorization code (stored in SQLite, 60s TTL by default) and redirects back to the client's redirect_uri.
  5. Token exchangePOST /token exchanges the code (with PKCE verification handled by the SDK itself) for an access token (a signed, stateless JWT, 1 hour TTL by default) and a refresh token (opaque, hashed at rest, single-use with rotation — reusing a spent refresh token fails immediately).
  6. Calling the serverPOST /mcp requires Authorization: Bearer <access_token>, verified by requireBearerAuth against the same provider.

Trade-off worth knowing: because access tokens are stateless JWTs, they can't be individually revoked before they expire — only refresh tokens are revocable. Given the short (1 hour) default TTL, this is a standard and acceptable trade-off, not an oversight.

Connecting an MCP client

Claude Desktop / Claude Code — add a remote connector, or in claude_desktop_config.json:

{
  "mcpServers": {
    "selfmcp": { "url": "https://your-deployed-url/mcp" }
  }
}

ChatGPT / Codex — add a custom connector using the same MCP endpoint URL from each app's connector settings screen.

All three should auto-discover the OAuth metadata and complete DCR + the consent flow on first connection.

Deployment

Any host that can run a persistent Node process works (Render, Railway, Fly.io, a small VM). Avoid serverless/functions platforms — the Streamable HTTP transport and SSE want a long-lived connection, and the SQLite file needs a persistent disk.

  1. Set BASE_URL to your real HTTPS URL (OAuth requires HTTPS in production; only localhost is exempted).
  2. Set TOKEN_SIGNING_SECRET to a real random secret (never reuse the .env.example placeholder).
  3. Make sure the volume/disk backing DATABASE_PATH persists across restarts.
  4. Run npm run build && npm run seed && npm start, or use the included Dockerfile.

Render (free tier)

A render.yaml Blueprint is included: on Render, New + → Blueprint, connect this repo, and it configures the service automatically (build command, start command, and a generated TOKEN_SIGNING_SECRET).

The free plan has no persistent disk — its filesystem resets not just on every deploy but every time the service wakes up from idle (it spins down after ~15 minutes of inactivity). Two consequences of that, and how this project handles them:

  • Profile/skills/projects/experience data would be lost on every wake-up. render.yaml works around this by running npm run seed as part of the start command (not just at build time), so this static data is restored every time the process boots.
  • OAuth client registrations and refresh tokens are dynamic, so they can't be "reseeded" the same way — they're genuinely wiped on each wake-up. In practice this just means an MCP client that registered before a spin-down will get an invalid_client error on its next call and needs to redo Dynamic Client Registration, which is expected, spec-compliant behavior for a client talking to a server that doesn't guarantee permanent client storage — not a bug. If this matters for your use case, move to a paid Render plan with a persistent disk instead.

Known dependency advisory

npm audit flags a moderate path-traversal issue in @hono/node-server (a transitive dependency of @modelcontextprotocol/sdk's static-file-serving helper). This project never uses that static-serving code path — only the SDK's protocol/transport and auth modules — so it isn't exploitable here. Revisit this once the SDK bumps its @hono/node-server dependency.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选