antlis-mcp
OfficialClick on "Deploy 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., "@antlis-mcpWhat projects has Anton built with Telegram?"
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.
antlis-mcp
MCP server that makes my developer portfolio queryable by AI assistants.
antlis-mcp exposes structured information about my projects, experience, and technical work through the Model Context Protocol.
Instead of an AI assistant having to crawl a portfolio website and infer relationships between projects and technologies, it can query the portfolio directly through MCP tools.
Live endpoint
https://antlis-mcp.vercel.app/api/mcpThe server is deployed as a Vercel serverless function.
Related MCP server: Portfolio MCP Server
What can it do?
An MCP-compatible AI client can ask questions such as:
What projects has Anton built with Telegram?
Which projects demonstrate Node.js experience?
What projects are relevant to a Senior React position?
Tell me about the
tg-mpv-botproject.
The MCP server turns these questions into structured queries against the portfolio data.
Available tools
about_me
Returns information about my professional background, primary technologies, and interests.
Example use:
Tell me about Anton's technical background.search_projects
Searches my portfolio projects by technology, topic, description, engineering experience, or project content.
Example queries:
ReactTelegramNode.jsAIfrontend architectureThe search currently performs lightweight text matching across project metadata and content.
get_project
Returns detailed information about a specific portfolio project.
Example:
get_project("tg-mpv-bot")The result includes project metadata, technology stack, scope, highlights, outcome, links, and the full project description.
Architecture
┌─────────────────────┐
│ AI assistant │
│ │
│ Claude / ChatGPT / │
│ other MCP clients │
└──────────┬──────────┘
│
│ MCP
▼
┌─────────────────────┐
│ antlis-mcp │
│ │
│ Vercel Function │
│ /api/mcp │
└──────────┬──────────┘
│
┌─────────────┴─────────────┐
│ │
▼ ▼
Portfolio data MCP tools
from GitHub ┌──────────────┐
│ about_me │
│ search_projects│
│ get_project │
└──────────────┘
│
▼
┌─────────────────────┐
│ antlis/ │
│ antlis.github.io │
│ │
│ src/content/ │
│ projects/*.mdx │
└─────────────────────┘The MCP server does not duplicate the portfolio content.
Instead, it reads project data directly from the public GitHub repository for my portfolio:
https://github.com/antlis/antlis.github.ioThis means the portfolio remains the source of truth.
Data flow
For project discovery, the server uses the GitHub Git Tree API to find project files:
src/content/projects/*.mdxIndividual project files are then fetched from GitHub and parsed as MDX/frontmatter.
The resulting data is converted into a structured project model:
interface Project {
slug: string
title: string
description: string
category: string
imgSrc?: string
imgAlt?: string
href?: string
blogHref?: string
stack: string[]
year: string
scope: string[]
highlights: string[]
outcome?: string
improvements?: string
content: string
}The server keeps the loaded projects in memory for the lifetime of the server instance to avoid repeatedly fetching the same data.
Project structure
antlis-mcp/
├── api/
│ └── mcp.ts # Vercel MCP endpoint
│
├── src/
│ ├── data/
│ │ ├── about.ts # Portfolio owner data
│ │ └── projects.ts # GitHub-backed project loader/search
│ │
│ └── tools/
│ ├── about.ts # about_me
│ └── projects.ts # search_projects / get_project
│
├── package.json
├── tsconfig.json
├── vercel.json
└── README.mdTech stack
TypeScript
Bun
Model Context Protocol
mcp-handlerZod
Vercel
GitHub API
MDX
gray-matter
Local development
Install dependencies:
bun installStart the local development server:
bun run devThe MCP endpoint will be available at:
http://localhost:3000/api/mcpRun TypeScript checks:
bun run typecheckTesting the MCP endpoint
The endpoint uses the MCP Streamable HTTP transport.
For example, you can inspect the available tools with:
curl -s \
-X POST http://localhost:3000/api/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'The production endpoint can be tested in the same way:
curl -s \
-X POST https://antlis-mcp.vercel.app/api/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'Deployment
The server is deployed to Vercel.
The MCP endpoint is exposed through:
/api/mcpVercel configuration:
{
"functions": {
"api/mcp.ts": {
"maxDuration": 60
}
}
}Deploy with the Vercel CLI:
bun x vercel --prodWhy build an MCP server for a portfolio?
A traditional portfolio is designed for humans.
It usually answers questions by presenting:
projects
technologies
job history
blog posts
links
screenshots
But AI assistants need a different interface.
For example, if someone asks:
Which of Anton's projects demonstrate TypeScript and backend experience?
A website forces the AI to discover and interpret the information itself.
With MCP, the portfolio can provide a structured interface specifically designed for this kind of interaction.
The goal is not simply to expose a website through an API.
The goal is to make the portfolio usable as context by AI agents.
Roadmap
Portfolio
MCP HTTP endpoint
Vercel deployment
about_mesearch_projectsget_projectsearch_blogget_articleportfolio resources
portfolio prompts
AI-oriented features
recommend_for_roleproject-to-skill matching
interview preparation recommendations
technology experience summaries
related project discovery
For example:
Recommend the most relevant projects for a Senior React
Frontend Developer position and explain why each one is relevant.The server could combine project metadata, technologies, descriptions, and engineering experience to produce a much more useful result than a simple keyword search.
Design principles
Portfolio is the source of truth
Project information lives in the portfolio repository rather than being copied into the MCP server.
Read-only by default
The MCP server exposes portfolio information but does not modify the portfolio.
Small, focused tools
The MCP interface should expose useful operations rather than simply mirroring the underlying data model.
AI-friendly data
Responses should contain enough context for an AI assistant to understand why a project is relevant, not just its name and technology list.
No unnecessary infrastructure
The current implementation intentionally uses a simple architecture:
GitHub → MCP server → AI clientThere is no database or separate CMS required.
Related projects
The MCP server exposes projects from my personal portfolio, including projects involving:
Vue / Nuxt
React / Next.js
TypeScript
Node.js
Telegram bots
AI tooling
Linux / homelab
automation
developer tooling
Portfolio:
https://antlis.is-a.devPortfolio source:
https://github.com/antlis/antlis.github.ioLicense
This project is personal open-source infrastructure for my portfolio.
The MCP implementation itself can be used as a reference for building a similar AI-queryable portfolio.
This server cannot be deployed
Maintenance
Related MCP Connectors
Public portfolio MCP for resume, services, availability, project evidence, and introductions.
The first portfolio AI agents can hire. Profile, products, pricing and briefs over MCP.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Give any MCP-compatible AI assistant a builder for live, hosted web tools and workflows.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables AI assistants to query the author's career, projects, publications, and technical documents through read-only MCP tools.-
- AlicenseAqualityBmaintenanceExposes a personal portfolio of projects, skills, and resume as callable tools for MCP-compatible AI assistants like Claude Desktop.4MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to retrieve a personal biography, skills, projects, and contact links through a read-only MCP server.-
- FlicenseAqualityBmaintenanceEnables MCP-compatible AI clients to retrieve a professional profile as callable tools, including projects, work experience, skills, and live GitHub activity.5-