personal-mcp-server
Allows listing a GitHub user's repositories with descriptions via the live GitHub REST API, optionally authenticated with a GITHUB_TOKEN.
Provides tools to query top artists and top tracks by listening time from Spotify listening history (sample data by default, or a personal export with the same schema).
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., "@personal-mcp-serverWhat were my top Spotify artists in 2024?"
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.
personal-mcp-server
A small Model Context Protocol (MCP) server that exposes personal project data as tools any MCP client can call.
What is MCP?
MCP is an open protocol that lets AI assistants (like Claude Desktop or Claude Code) call out to external "servers" for tools, resources, and data — instead of the model having to guess or hallucinate. A client (the assistant) connects to a server (this project) over stdio or SSE, and the server advertises tools the assistant can invoke, with typed inputs and text outputs. This project is a server: it wraps a few personal data sources — Spotify listening history, movie ratings, and GitHub repos — in a small toolset that a client can query in natural language ("what were my top artists in 2024?").
Related MCP server: Lspace MCP Server
Tools exposed
Tool | Description | Data source |
| Top artists by listening time |
|
| Top tracks by listening time |
|
| Search personal movie ratings/notes |
|
| List a GitHub user's repos with descriptions | Live GitHub API |
The Spotify and movie data files are clearly-labeled synthetic sample data checked into the repo (_note field in each file) so the server runs out of the box without needing your real Spotify export or a personal ratings database. Swap in your own files with the same shape to use real data — no code changes required as long as the JSON schema matches.
The GitHub tool calls the live GitHub REST API. It works unauthenticated for public data (subject to GitHub's stricter unauthenticated rate limits) or authenticated via a GITHUB_TOKEN environment variable.
Running the server
Requires Python 3.10+.
# Install dependencies
pip install -r requirements.txt
# (or: pip install -e .)
# Optional: for live/authenticated GitHub calls
export GITHUB_TOKEN=ghp_your_token_here
# Run the server directly (stdio transport)
python server.py
# Or use the MCP CLI dev tool (auto-reload + inspector UI)
mcp dev server.pyConnecting from Claude Desktop
Add this server to your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"personal-data": {
"command": "python",
"args": ["/absolute/path/to/personal-mcp-server/server.py"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}Restart Claude Desktop, then ask something like "What were my top Spotify artists in 2024?" or "List my GitHub repos."
Connecting from Claude Code
Claude Code can attach to local MCP servers the same way — via its MCP server configuration (see Claude Code docs for claude mcp add), pointing at the same command/args shown above.
Project structure
personal-mcp-server/
├── server.py # MCP server + tool definitions
├── sample_data/
│ ├── spotify_history.json # SAMPLE synthetic Spotify streaming history
│ └── movie_ratings.json # SAMPLE synthetic movie ratings/notes
├── pyproject.toml
├── requirements.txt
└── README.mdThis server cannot be installed
Maintenance
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
- Flicense-qualityDmaintenanceA Model Context Protocol server that enables controlling Spotify playback through natural language commands in MCP clients like Cursor or Claude for Desktop.Last updated1

Lspace MCP Serverofficial
FlicenseAqualityFmaintenanceAn open-source server implementing the Model Context Protocol (MCP) that enables capturing insights from AI sessions and transforming them into persistent, searchable knowledge accessible across tools.Last updated78- AlicenseBqualityDmaintenanceA simple server implementing the Model Context Protocol (MCP) that exposes personal tools like note-taking for compatible MCP clients or agents.Last updated21,861MIT
- Alicense-qualityAmaintenanceA Model Context Protocol server that exposes Sonarr, Radarr, Lidarr, and Jellyfin to any MCP client through a curated tool layer for LLM consumption.Last updatedMIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
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/saketthakur001/personal-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server