https://github.com/dsp/mcp-server-steam
MCP Server for interacting with Steam
https://github.com/dsp/mcp-server-steam
Last synced: 8 months ago
JSON representation
MCP Server for interacting with Steam
- Host: GitHub
- URL: https://github.com/dsp/mcp-server-steam
- Owner: dsp
- License: mit
- Created: 2025-02-16T00:09:01.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-17T15:13:52.000Z (8 months ago)
- Last Synced: 2025-02-17T15:47:07.118Z (8 months ago)
- Language: Nix
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- mcp-index - Steam Gaming Context Server - Fetches user gaming information and preferences from Steam, providing AI assistants with context on users' gaming activities. Integrates with the Steam API to enhance gaming interactions. (APIs and HTTP Requests)
README
# MCP Steam Server
A Model Context Protocol (MCP) server that provides Steam gaming context to AI assistants. This service integrates with the Steam API to fetch user gaming information and exposes it through the MCP protocol, allowing AI assistants to access and understand users' gaming activities and preferences.
## Installation
### Using Docker (Recommended)
The easiest way to run the MCP Steam server is using Docker:
```bash
docker run --rm -i ghcr.io/dsp/mcp-server-steam:latest
```### Configuration
The server can be configured using environment variables:
```bash
# Required configuration
STEAM_API_KEY=your_steam_api_key
```## Development
### Prerequisites
- OpenJDK 21
- Docker (for container builds)
- Git
- [devenv.sh](https://devenv.sh)### Setting Up Development Environment
1. Clone the repository:
```bash
git clone https://github.com/dsp/mcp-steam.git
cd mcp-steam
```2. Use the development shell:
```bash
devshell shell
```
This will set up the required development environment with all necessary dependencies.3. Build the project:
```bash
mvn package
```### Building Docker Image Locally
```bash
docker build -t mcp-server-steam .
```## API Documentation
The server implements the Model Context Protocol (MCP) specification. For detailed API documentation, please refer to the [MCP Documentation](https://modelcontextprotocol.io).
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## License
MIT License