Akib Dabgar MCP Server
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., "@Akib Dabgar MCP ServerWhat are Akib's technical skills?"
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.
Akib Dabgar MCP Server
A production-ready, TypeScript-based Model Context Protocol (MCP) server built for Akib Dabgar. The server acts as a structured personal knowledge hub, allowing LLM clients (such as Claude Desktop, ChatGPT, Claude Code, and Codex) to query details about Akib's skills, experience, projects, education, and career aspirations.
To maximize context-window efficiency and execution speed, the server implements Dynamic Context Retrieval (DCR), selectively parsing and returning only relevant sections of Akib's profile knowledge base instead of dumping the entire profile into the context.
π Features
Dynamic Context Retrieval (DCR): Implements keyword tokenization and weight-based section scoring to rank and retrieve only the most relevant headings/sections matching the query.
MCP Tools: Exposes a
query_profiletool that takes natural language queries and returns optimized Markdown snippets.MCP Resources: Maps all markdown files in the
knowledge/database toknowledge://URIs, enabling client LLMs to read raw content when needed.MCP Prompts: Exposes an
akib_profile_assistantprompt that pre-loads system prompt instructions, response policies, and optional topic-specific retriever context.TypeScript ESM Architecture: Clean, modular, typed codebase utilizing modern Node.js and ES Modules.
Related MCP server: Developer Portfolio MCP Server
π Folder Structure
βββ knowledge/
β βββ dcr/ # DCR architecture specifications
β β βββ overview.md
β β βββ retrieval-strategy.md
β β βββ ranking-rules.md
β β βββ query-examples.md
β β βββ response-policy.md
β β βββ limitations.md
β βββ about.md # Core bio, location, professional summary
β βββ skills.md # Technical and soft skills
β βββ projects.md # Akib's project history (ChainIT Pay, etc.)
β βββ experience.md # Work experience details (eSparkBiz)
β βββ education.md # Saurashtra University degree
β βββ career-goals.md # Professional goals
β βββ interests.md # Architecture, scalable systems, AI
β βββ faq.md # Common questions & answers
βββ src/
β βββ retriever/
β β βββ DynamicContextRetriever.ts # DCR query analysis and section ranking
β βββ services/
β β βββ KnowledgeService.ts # Markdown loader and segment parser
β βββ tools/
β β βββ index.ts # Tool schema definitions and handlers
β βββ index.ts # Server entry point, transport & handlers
βββ package.json
βββ tsconfig.json
βββ README.md # Project documentation (this file)π οΈ Getting Started
Prerequisites
Node.js (v18.0.0 or higher recommended)
npm (v9.0.0 or higher)
Installation
Clone the repository and install the dependencies:
npm installBuild
Compile the TypeScript codebase to the build/ directory:
npm run buildβοΈ Running the Server
Start the MCP Server on standard I/O (Stdio):
npm startFor development with hot-reloading:
npm run devπ Client Configuration
To connect this server to commonly used MCP clients:
1. Claude Desktop
Add the server configuration to your claude_desktop_config.json (located at %APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"akib-profile-server": {
"command": "node",
"args": [
"d:/text/jpg/Projects/knowledge/build/index.js"
],
"env": {}
}
}
}2. Cursor IDE
Open Cursor Settings -> Features -> MCP.
Click + Add New MCP Server.
Fill in the configuration:
Name:
Akib Profile ServerType:
stdioCommand:
node d:/text/jpg/Projects/knowledge/build/index.js
Click Save.
3. Claude Code (CLI)
Add the server using the mcp command:
claude mcp add akib-profile-server node d:/text/jpg/Projects/knowledge/build/index.jsπ How to Test
Using the MCP Inspector
You can test the server interactively by running the MCP Inspector:
npx @modelcontextprotocol/inspector node build/index.jsManual Verification via Stdio
You can verify the JSON-RPC interface by piping requests to stdin:
List Tools:
echo {"jsonrpc":"2.0","method":"tools/list","id":1,"params":{}} | node build/index.jsQuery Profile (DCR in action):
echo {"jsonrpc":"2.0","method":"tools/call","id":2,"params":{"name":"query_profile","arguments":{"query":"What databases does Akib know?"}}} | node build/index.jsList Prompts:
echo {"jsonrpc":"2.0","method":"prompts/list","id":3,"params":{}} | node build/index.jsGet Prompt:
echo {"jsonrpc":"2.0","method":"prompts/get","id":4,"params":{"name":"akib_profile_assistant","arguments":{"topic":"skills"}}} | node build/index.js
π‘ Architectural Highlights
Granular Parsing:
KnowledgeServicesplits markdown files by headings, parsing them into indexableKnowledgeSectionblocks. This ensures high-granularity DCR mapping.Smart Token & Synonym Routing:
DynamicContextRetrievertokenizes query keywords, strips stopwords, and uses a keyword-to-file boost matrix combined with bidirectional heading/content string matches.Robust Path Security: Target resource URIs are normalized and restricted within the root
knowledge/directory to prevent directory traversal vulnerabilities.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
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/akibdabgar07/self-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server