What is the mcp-me MCP server?
Expose your personal, professional, educational, and social profile to any AI assistant via MCP.
How to install mcp-me
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
MCP_ME_PROFILE_DIRPath to your profile directory (overrides default ~/.mcp-me)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-me": {
"command": "npx",
"args": [
"-y",
"mcp-me",
"serve",
"profileDir"
],
"env": {
"MCP_ME_PROFILE_DIR": "<YOUR_MCP_ME_PROFILE_DIR>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-me": {
"command": "npx",
"args": [
"-y",
"mcp-me",
"serve",
"profileDir"
],
"env": {
"MCP_ME_PROFILE_DIR": "<YOUR_MCP_ME_PROFILE_DIR>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-me": {
"command": "npx",
"args": [
"-y",
"mcp-me",
"serve",
"profileDir"
],
"env": {
"MCP_ME_PROFILE_DIR": "<YOUR_MCP_ME_PROFILE_DIR>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-me": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-me",
"serve",
"profileDir"
],
"env": {
"MCP_ME_PROFILE_DIR": "<YOUR_MCP_ME_PROFILE_DIR>"
}
}
}
}Claude Code
claude mcp add mcp-me --env MCP_ME_PROFILE_DIR=<YOUR_MCP_ME_PROFILE_DIR> -- npx -y mcp-me serve profileDirRelated MCP servers
DevUtils MCP Server
Active
36 local developer utilities for AI agents. Hash, encoding, UUID, JWT, JSON, network, text.
5
View repository →TypeScript
MIT
Locus
Active
Lightweight MCP server for LSP code intelligence — symbol lookup, refs, types, diagnostics.
0
View repository →TypeScript
MIT