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 "Deploy 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 deployed
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
The Cortex MCP server provides read-only access to real-time engineering context from the Cortex developer portal, allowing AI coding assistants to answer natural language questions about your organization's catalog (microservices, libraries, domains, teams, infrastructure), scorecards (engineering standards and best practices), initiatives (goals and deadlines), and Engineering Intelligence metrics. It includes tools for querying documentation, tracking personal entities, and accessing AI-assisted insights across the entire Cortex ecosystem.
- MysocialOAuthio.mysocial
Social media MCP server: your Instagram, TikTok, YouTube, LinkedIn and Threads history for your AI.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables controlling Spotify playback through natural language commands in MCP clients like Cursor or Claude for Desktop.1-

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.78-- AlicenseBqualityDmaintenanceA simple server implementing the Model Context Protocol (MCP) that exposes personal tools like note-taking for compatible MCP clients or agents.2801MIT
- AlicenseNot gradedqualityAmaintenanceA Model Context Protocol server that exposes Sonarr, Radarr, Lidarr, and Jellyfin to any MCP client through a curated tool layer for LLM consumption.MIT