Bijon Portfolio MCP Server
Exposes a personal portfolio's resume, projects, skills, certifications, and live GitHub repositories as tools for AI assistants to query via natural language.
README
š Bijon Portfolio MCP Server
A Node.js & TypeScript-based Model Context Protocol (MCP) server that exposes my resume, portfolio projects, certifications, skills, and live GitHub repositories as tools. This allows AI assistants (like Claude Desktop) to query my professional background, projects, and experiences dynamically using natural language.
š Features & Exposed Tools
The server registers the following tools with the MCP client:
getProfile: Exposes core bio, contact information, education history, work/internship experiences, volunteering, and social links.getProjects: Lists curated portfolio projects (both professional and academic), with support for filtering by specific tech stacks (e.g. React, Laravel, Node.js).getSkills: Lists structured technical skills categorized by programming languages, frameworks, and developer tools.getCertificates: Lists professional and academic certifications (e.g., Salesforce AI Associate, Postman Expert, etc.).getGithubRepos: Performs an authenticated fetch to the GitHub API to return a live list of my active public repositories, showing updated dates, stars, and languages.askAboutBijon: A free-text search tool allowing natural language Q&A across the entire portfolio dataset (e.g., "What did he do at FAITE?" or "Summarize his research project at SLIIT").
š ļø Tech Stack
- Runtime: Node.js (v18+)
- Language: TypeScript
- Protocol:
@modelcontextprotocol/sdk(Stdio transport) - JSON Data Layer: Custom file-based single source of truth for resume info.
š¦ Getting Started
Prerequisites
- Node.js installed (LTS recommended)
- A GitHub Personal Access Token (
GITHUB_TOKEN) with read-only public repository access (recommended to avoid API rate limits).
Setup
-
Clone the repository:
git clone https://github.com/Bijon2002/Build-Own-MCP.git cd Build-Own-MCP -
Install dependencies:
npm install -
Configure Environment Variables: Create a
.envfile in the root directory (or copy from the template):GITHUB_TOKEN=your_github_personal_access_token_here -
Build the project:
npm run build
š„ļø Local Integration (Claude Desktop)
To add this server to your local Claude Desktop client, edit the configuration file:
-
Open your Claude Desktop config file:
- On Windows:
%APPDATA%\Claude\claude_desktop_config.json - On macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- On Windows:
-
Add the following definition under the
mcpServersproperty:
{
"mcpServers": {
"bijon-portfolio": {
"command": "npx",
"args": [
"-y",
"tsx",
"A:/Build Own MCP/src/server.ts"
],
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}
- Restart Claude Desktop. You will now see the tool icon (š) with my portfolio tools active!
š Project Structure
āāā data/
ā āāā portfolio-data.json # Bio, education, experience, skills, socials
ā āāā projects.json # Curated projects list
ā āāā certificates.json # Certifications list
āāā src/
ā āāā lib/
ā ā āāā github.ts # Live GitHub API query helper
ā ā āāā loadData.ts # JSON loader helper
ā āāā tools/
ā ā āāā askAboutBijon.ts # Free-text Q&A tool
ā ā āāā getCertificates.ts
ā ā āāā getGithubRepos.ts
ā ā āāā getProfile.ts
ā ā āāā getProjects.ts
ā ā āāā getSkills.ts
ā āāā server.ts # Entry point (MCP server & stdio setup)
āāā tsconfig.json
āāā package.json
āāā README.md
šØāš» Author
Marislin Bijosilin (Bijon)
- Website: bijon.dev
- GitHub: @Bijon2002
- LinkedIn: in/marisilin-bijosilin
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.