Name | steam-info-mcp JSON |
Version |
0.1.1
JSON |
| download |
home_page | None |
Summary | Model Context Protocol Server Exposing Steam Web API Tools |
upload_time | 2025-08-18 09:46:27 |
maintainer | Beta |
docs_url | None |
author | Beta |
requires_python | >=3.9 |
license | MIT License
Copyright (c) 2025 Beta
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
MIT License
Copyright (c) 2024 Beta
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
game-stats
mcp
model-context-protocol
steam
steam-web-api
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Steam Info MCP
A Model Context Protocol (MCP) server that exposes Steam Web API tools for retrieving game statistics, player information, and more.
## Features
- **Player Information**: Get summaries, friends, bans, and groups
- **Game Library**: Access owned games and recently played
- **Achievements & Stats**: Retrieve player achievements and game statistics
- **Steam News**: Get latest news for any Steam app
- **Global Data**: Access global achievement percentages and player counts
- **Smart ID Handling**: Accept both vanity names (e.g., "gaben") and SteamID64s (e.g., "76561197960287930")
## Installation
### From PyPI
```bash
pip install steam-info-mcp
```
### Development Installation
```bash
git clone https://github.com/beta/steam-info-mcp
cd steam-info-mcp
pip install -e .
```
## Configuration
Set the following environment variables in your MCP client configuration:
- `STEAM_API_KEY`: Your Steam Web API key
### Example Configuration
```json
{
"mcpServers": {
"Steam Info MCP": {
"command": "uvx",
"args": ["steam-info-mcp"],
"env": {
"STEAM_API_KEY": "your-api-key-here"
}
}
}
}
```
## Available Tools
### Player Information
- `steam-player-summaries(user_identifier:str)` - Get player summaries for a user (vanity name or SteamID64)
- `steam-friend-list(user_identifier:str, relationship:str="all")` - Get friend list for a user (vanity name or SteamID64)
- `steam-player-bans(user_identifier:str)` - Get player bans for a user (vanity name or SteamID64)
- `steam-user-groups(user_identifier:str)` - Get user groups for a user (vanity name or SteamID64)
- `steam-resolve-vanity(vanity:str)` - Resolve vanity name to SteamID64
### Game Library
- `steam-owned-games(user_identifier:str)` - Get owned games for a user (vanity name or SteamID64)
- `steam-recently-played(user_identifier:str, count:int=5)` - Get recently played games
- `steam-level(user_identifier:str)` - Get Steam level for a user (vanity name or SteamID64)
- `steam-badges(user_identifier:str)` - Get badges for a user (vanity name or SteamID64)
- `steam-community-badge-progress(user_identifier:str, badgeid:int=2)` - Get badge progress
### Game Statistics
- `steam-player-achievements(user_identifier:str, appid:int)` - Get achievements for a user (vanity name or SteamID64) and app
- `steam-user-stats(user_identifier:str, appid:int)` - Get user stats for a user (vanity name or SteamID64) and game
- `steam-global-achievements(appid:int)` - Get global achievement percentages for an app
- `steam-current-players(appid:int)` - Get current player count for an app
### News & Updates
- `steam-news(appid:int, count:int=3, maxlength:int=300)` - Get app news
## Usage
### Command Line
```bash
steam-info-mcp
```
### As MCP Server
The server runs over stdio and can be integrated with any MCP-compatible client.
## Requirements
- Python 3.9+
- Steam Web API key
- Internet connection
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Raw data
{
"_id": null,
"home_page": null,
"name": "steam-info-mcp",
"maintainer": "Beta",
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "game-stats, mcp, model-context-protocol, steam, steam-web-api",
"author": "Beta",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/9e/8a/f30b572be1858de8fad6a59ec2b129ccc19722998462d465fa1aea674cb9/steam_info_mcp-0.1.1.tar.gz",
"platform": null,
"description": "# Steam Info MCP\n\nA Model Context Protocol (MCP) server that exposes Steam Web API tools for retrieving game statistics, player information, and more.\n\n## Features\n\n- **Player Information**: Get summaries, friends, bans, and groups\n- **Game Library**: Access owned games and recently played\n- **Achievements & Stats**: Retrieve player achievements and game statistics\n- **Steam News**: Get latest news for any Steam app\n- **Global Data**: Access global achievement percentages and player counts\n- **Smart ID Handling**: Accept both vanity names (e.g., \"gaben\") and SteamID64s (e.g., \"76561197960287930\")\n\n## Installation\n\n### From PyPI\n```bash\npip install steam-info-mcp\n```\n\n### Development Installation\n```bash\ngit clone https://github.com/beta/steam-info-mcp\ncd steam-info-mcp\npip install -e .\n```\n\n## Configuration\n\nSet the following environment variables in your MCP client configuration:\n\n- `STEAM_API_KEY`: Your Steam Web API key\n\n### Example Configuration\n\n```json\n{\n \"mcpServers\": {\n \"Steam Info MCP\": {\n \"command\": \"uvx\",\n \"args\": [\"steam-info-mcp\"],\n \"env\": {\n \"STEAM_API_KEY\": \"your-api-key-here\"\n }\n }\n }\n}\n```\n\n## Available Tools\n\n### Player Information\n- `steam-player-summaries(user_identifier:str)` - Get player summaries for a user (vanity name or SteamID64)\n- `steam-friend-list(user_identifier:str, relationship:str=\"all\")` - Get friend list for a user (vanity name or SteamID64)\n- `steam-player-bans(user_identifier:str)` - Get player bans for a user (vanity name or SteamID64)\n- `steam-user-groups(user_identifier:str)` - Get user groups for a user (vanity name or SteamID64)\n- `steam-resolve-vanity(vanity:str)` - Resolve vanity name to SteamID64\n\n### Game Library\n- `steam-owned-games(user_identifier:str)` - Get owned games for a user (vanity name or SteamID64)\n- `steam-recently-played(user_identifier:str, count:int=5)` - Get recently played games\n- `steam-level(user_identifier:str)` - Get Steam level for a user (vanity name or SteamID64)\n- `steam-badges(user_identifier:str)` - Get badges for a user (vanity name or SteamID64)\n- `steam-community-badge-progress(user_identifier:str, badgeid:int=2)` - Get badge progress\n\n### Game Statistics\n- `steam-player-achievements(user_identifier:str, appid:int)` - Get achievements for a user (vanity name or SteamID64) and app\n- `steam-user-stats(user_identifier:str, appid:int)` - Get user stats for a user (vanity name or SteamID64) and game\n- `steam-global-achievements(appid:int)` - Get global achievement percentages for an app\n- `steam-current-players(appid:int)` - Get current player count for an app\n\n### News & Updates\n- `steam-news(appid:int, count:int=3, maxlength:int=300)` - Get app news\n\n## Usage\n\n### Command Line\n```bash\nsteam-info-mcp\n```\n\n### As MCP Server\nThe server runs over stdio and can be integrated with any MCP-compatible client.\n\n## Requirements\n\n- Python 3.9+\n- Steam Web API key\n- Internet connection\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Beta\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n \n MIT License\n \n Copyright (c) 2024 Beta\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "Model Context Protocol Server Exposing Steam Web API Tools",
"version": "0.1.1",
"project_urls": null,
"split_keywords": [
"game-stats",
" mcp",
" model-context-protocol",
" steam",
" steam-web-api"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "1d2538c0368049b3eee544fd25f2f39c5ff5ba13499f62b1886626a87fc10523",
"md5": "3de4e62ef9e51189ccb8d7982746d10e",
"sha256": "a451183c0912089294d0c72032896acbf2af7c22b816fc688702d96bf45d6cf8"
},
"downloads": -1,
"filename": "steam_info_mcp-0.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3de4e62ef9e51189ccb8d7982746d10e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 7253,
"upload_time": "2025-08-18T09:46:24",
"upload_time_iso_8601": "2025-08-18T09:46:24.819520Z",
"url": "https://files.pythonhosted.org/packages/1d/25/38c0368049b3eee544fd25f2f39c5ff5ba13499f62b1886626a87fc10523/steam_info_mcp-0.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e8af30b572be1858de8fad6a59ec2b129ccc19722998462d465fa1aea674cb9",
"md5": "3954eeeb4a0038ff19929fb1a3ed765f",
"sha256": "cccddc97e964ce63b726c7fcab5f14b199211e00f4d40c5eab6ef240c4cbcba2"
},
"downloads": -1,
"filename": "steam_info_mcp-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "3954eeeb4a0038ff19929fb1a3ed765f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 6047,
"upload_time": "2025-08-18T09:46:27",
"upload_time_iso_8601": "2025-08-18T09:46:27.966818Z",
"url": "https://files.pythonhosted.org/packages/9e/8a/f30b572be1858de8fad6a59ec2b129ccc19722998462d465fa1aea674cb9/steam_info_mcp-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-18 09:46:27",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "steam-info-mcp"
}