MCP Employee Identity Server
This MCP server enables AI-assisted professional profile generation by connecting to verified employee work data (skills, career history, certifications, projects) from employer HCM systems.
README
MCP Employee Identity Server
Bridging verified work data to professional identity — so your profile reflects what you actually did, not just what you claimed.
Employees spend a third of their life at work. They build skills validated by assessments, earn certifications tracked by learning systems, deliver projects measured by delivery records, and progress through career levels documented in HR platforms.
None of that data makes it to their professional profiles.
LinkedIn is entirely self-reported. GitHub bios are written from memory. There is no verification layer connecting what employees actually accomplished at work to how they present themselves professionally. The data exists — it's just locked inside employer HCM systems with no employee-facing path out.
This MCP server is that path.
The Problem
Today's professional identity stack is broken in three ways:
Self-reported profiles have no credibility. Anyone can claim "Led a team of 8 engineers" or "Expert in Kubernetes." There is no mechanism for a reader — recruiter, hiring manager, collaborator — to distinguish verified experience from aspirational branding.
Verified work data is trapped. Employers invest heavily in skills assessments, certification tracking, project management tooling, and performance systems. Employees generate enormous value through these systems but have no portable access to their own data.
Profile creation is manual and lossy. Even honest professionals forget projects, understate impact, and miss skills when writing their profiles from memory. The gap between what they did and what they write is not deception — it's friction.
How It Works
This is a Model Context Protocol (MCP) server that exposes verified employee work data as tools. When connected to Claude, it enables AI-assisted professional profile generation grounded in real work history — not hallucination, not self-report.
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ │ │ │ │ HCM System │
│ Employee │────▶│ Claude │────▶│ (Mock Data) │
│ "Update my │ │ Orchestrates │ │ │
│ LinkedIn" │ │ MCP tool calls │ │ Skills │
│ │◀────│ │◀────│ Career History │
│ Gets verified │ │ Synthesizes │ │ Certifications │
│ profile content│ │ profile content│ │ Projects │
└─────────────────┘ └─────────────────┘ └─────────────────┘
- Employee asks Claude to help update their professional profile
- Claude calls MCP tools to pull verified work data — skills, career history, certifications, projects
- Claude synthesizes that data into platform-specific content (LinkedIn summary, GitHub bio)
- Employee reviews, edits, and publishes — with confidence that every claim is grounded in employer-verified records
Available Tools
| Tool | Description |
|---|---|
get_my_skills |
Returns verified skills with proficiency levels, years of experience, and assessment source |
get_my_career_history |
Returns roles, tenure, promotions, reporting structure, and highlights per level |
get_my_certifications |
Returns completed certifications with issuing bodies, dates, and credential verification links |
get_my_projects |
Returns delivered projects with quantified outcomes, technologies used, and team size |
generate_linkedin_summary |
Pulls all work data and generates a LinkedIn About section, headline, and skills list |
generate_github_bio |
Pulls all work data and generates a GitHub profile README optimized for developer audiences |
The first four tools return raw verified data. The last two orchestrate the data tools and produce platform-ready content — every claim traceable to a source record.
Demo
LinkedIn Summary Generation

GitHub Bio Generation

The Bigger Vision
This repository is a reference implementation using mock data for a single employee (Alex Chen, a Software Engineer turned Tech Lead at a 5,200-person enterprise company). The architecture is intentionally simple to demonstrate the concept.
The real opportunity is connecting this to production HCM systems:
Employer-verified skills. When a skill comes from a Workday skills assessment or an internal engineering leveling rubric, it carries weight that a self-reported LinkedIn endorsement never will. Imagine a "Verified by Employer" badge on profile skills — backed by actual assessment data, not peer clicks.
Auditable career history. Titles, tenure, promotions, and reporting relationships pulled directly from HRIS records. No inflation, no ambiguity. A recruiter reading "Senior Engineer → Tech Lead in 18 months" can trust it because the data source is the employer's system of record.
Employee-permissioned data access. The employee controls what gets shared. The MCP server acts as an agent on behalf of the employee — not the employer. This is professional identity that is both trustworthy and employee-owned.
Platform integration. The same verified data can generate content for LinkedIn, GitHub, personal portfolio sites, conference speaker bios, and internal talent marketplace profiles. One source of truth, many destinations.
Potential HCM Integrations
| System | Data Available |
|---|---|
| Workday | Skills cloud, career history, learning completions, performance ratings |
| ADP | Employment records, certifications, training history |
| SAP SuccessFactors | Competency assessments, goal completions, succession data |
| Cornerstone | Learning paths, certifications, skills assessments |
| Internal Systems | Git commit history, code review data, project delivery records |
Tech Stack
| Component | Technology |
|---|---|
| Protocol | Model Context Protocol (MCP) |
| Server | @modelcontextprotocol/sdk — official MCP TypeScript SDK |
| Runtime | Node.js with TypeScript (ESM) |
| Transport | stdio (standard for local MCP servers) |
| AI Layer | Anthropic Claude via @anthropic-ai/sdk |
Setup
Prerequisites
- Node.js 18+
- An Anthropic API key (for Claude Desktop integration)
Installation
git clone https://github.com/Anshuman-Gaur-AI-Builder/mcp-employee-identity.git
cd mcp-employee-identity
npm install
npm run build
Connect to Claude Desktop
Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"employee-identity": {
"command": "node",
"args": ["/absolute/path/to/mcp-employee-identity/dist/server.js"]
}
}
}
Restart Claude Desktop. The 6 tools will appear in Claude's tool list.
Test It
Ask Claude:
"Use the employee identity tools to pull all verified work data for employee EMP-2847 and generate a LinkedIn summary."
Claude will call get_my_skills, get_my_career_history, get_my_certifications, and get_my_projects, then synthesize a LinkedIn profile grounded entirely in verified data.
Sample Employee Data
The mock dataset represents Alex Chen, a software engineer who progressed to Tech Lead over 4 years at Acme Corp:
- 3 career levels: Software Engineer II → Senior Software Engineer → Tech Lead
- 10 verified skills: TypeScript (Expert), React (Expert), System Design (Advanced), Technical Leadership (Advanced), and more
- 4 certifications: AWS Solutions Architect, CKAD, PSM I, Apollo GraphQL
- 4 major projects: Customer Analytics Dashboard (12K MAU), Unified API Gateway (50M req/day), Payments Migration ($2.3B volume), Internal Developer Platform (85% adoption)
Every data point includes a verification source — assessment name, project delivery record, or certification credential ID.
Why This Matters
Professional identity is the last unstructured problem in HR technology.
Employers have spent billions digitizing payroll, benefits, recruiting, and performance management. But the output of all that work — the professional reputation and verified track record of the employee — has no structured, portable, trustworthy representation.
LinkedIn filled the gap with self-reported profiles, which solved discovery but not credibility. Internal talent marketplaces solved matching but not portability. Skills ontologies solved taxonomy but not verification.
MCP solves the plumbing. It gives AI systems structured access to authoritative data sources. This server demonstrates what happens when you point that plumbing at the most valuable data an employee generates: proof of what they actually did at work.
This is a missing layer in today's HR technology stack — and it belongs to the employee.
Built by Anshuman Gaur — VP of Product with 7 patents and deep HCM domain expertise. Building at the intersection of AI infrastructure and employee-owned professional identity.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。