Skip to main content
Glama
mrcodefrost

daksh-mcp

by mrcodefrost

daksh-mcp

An MCP (Model Context Protocol) server that exposes a professional profile — projects, work experience, skills, and live GitHub activity — as tools any MCP-compatible AI client (Claude Desktop, Claude Code, etc.) can call.

Connect it to Claude Desktop and ask things like "What fintech projects has this person shipped?" or "Summarize their experience at [company]" — the client calls these tools and answers from real, structured data instead of a resume PDF.

Tools exposed

Tool

Input

What it does

get_profile

(none)

Name, title, summary, location, contact/social links

list_projects

tag?, limit?

Projects, optionally filtered by tag (e.g. "fintech")

get_experience

company?

Work history, optionally filtered by company

get_skills

category?

Skills grouped by category (languages, backend, cloud, ...)

get_github_activity

username?, limit?

Live call to the GitHub REST API for recently updated public repos

All inputs are validated with Zod schemas.

Related MCP server: whoami-mcp

Project structure

data/profile.json       Static source data — replace this with your own info
src/schema.ts           Zod schemas for the profile data shape
src/data.ts             Loads + validates profile.json at startup
src/github.ts           GitHub REST API client (fetch-based, optional token)
src/tools/*.ts          One file per tool: input schema + handler
src/index.ts            Wires everything into an McpServer over stdio

Setup

npm install
cp .env.example .env   # optional: add a GITHUB_TOKEN to raise API rate limits
npm run build

Then edit data/profile.json with your own projects, experience, and skills.

Running & testing locally

Option A — MCP Inspector

npm run build
npx @modelcontextprotocol/inspector node dist/index.js

Opens a browser UI to see the tool list and call each tool with arbitrary arguments.

Option B — Claude Desktop

Add this server to Claude Desktop's config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "daksh-mcp": {
      "command": "node",
      "args": ["ABSOLUTE_PATH_TO_REPO/dist/index.js"]
    }
  }
}

Restart Claude Desktop and ask it questions about the profile in data/profile.json.

Option C — Claude Code

Claude Code can attach to the same server via claude mcp add, using the same command/args as above.

Environment variables

See .env.example. GITHUB_TOKEN is optional — it raises the GitHub API rate limit from 60/hr (unauthenticated) to 5000/hr. The server works without it.

F
license - not found
A
quality
B
maintenance

Maintenance

UpdatingMaintainers
UpdatingResponse time
Release cycle
0Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    A Model Context Protocol (MCP) server that exposes a professional profile — certifications, industry articles, open source contributions, and live GitHub activity — as a queryable API for AI agents.
    7
    11
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Exposes a person's structured professional profile as MCP tools, enabling Claude and other MCP clients to answer questions about that person based on real data.
    12
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Aggregates 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.
    1
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Exposes personal portfolio data as tools for Claude to answer questions about the developer, including profile, skills, experience, projects, and contact information.

View all related MCP servers

Related MCP Connectors

  • Package intelligence MCP for AI agents — 22 tools, 19 ecosystems, AGPL SDK, free.

  • Profile server for kazejev.com: biography, skills, projects and education.

  • Free public MCP for AI agents — 193 tools, 44 workflows. No API key.

View all MCP Connectors

Latest Blog Posts

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/mrcodefrost/daksh-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server