Skip to main content
Glama

šŸŽ® SteamMCP

AI-Powered Steam Game Recommendation Agent

SteamMCP is an agentic AI application that recommends Steam games based on natural language preferences. It uses the Model Context Protocol (MCP) to allow an LLM agent to dynamically discover and invoke specialized recommendation tools.

The application supports game search, similarity-based recommendations, tag-based recommendations, platform filtering, and detailed game metadata retrieval.

🌐 Live Demo: https://steam-mcp-alpha.vercel.app/


šŸš€ Features

  • šŸ¤– AI-powered game recommendations using an LLM agent

  • šŸ”Œ Model Context Protocol (MCP) tool integration

  • šŸ” Search Steam games by name

  • šŸŽ® Find games similar to a selected game

  • šŸ·ļø Recommend games based on Steam tags and preferences

  • šŸ’» Filter recommendations by platform

    • Windows

    • macOS

    • Linux

  • šŸ“– Retrieve detailed game information

  • 🌐 REST API built with FastAPI

  • āš›ļø React frontend

  • ā˜ļø Cloud deployment using Render and Vercel


Related MCP server: Steam MCP Server

šŸ—ļø Architecture

                    User
                     │
                     ā–¼
              React Frontend
                     │
                     ā–¼
                FastAPI API
                     │
                     ā–¼
                AI Agent
                     │
                     ā–¼
              Groq LLM API
                     │
              Tool Selection
                     │
                     ā–¼
              MCP Client / Server
                     │
       ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”¼ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
       ā–¼             ā–¼             ā–¼
 Game Search    Tag Recommender  Game Details
       │             │             │
       ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”¼ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
                     │
                     ā–¼
                Steam Dataset

🧠 How It Works

SteamMCP uses an LLM agent to understand the user's request and decide which tools should be used.

For example:

User Request

"I want a relaxing farming game."

The AI agent:

  1. Understands the user's preferences.

  2. Selects the appropriate MCP recommendation tool.

  3. Calls the tool through the MCP server.

  4. Receives game recommendations.

  5. Generates a final response based only on the returned tool results.


šŸ”Œ MCP Tools

The MCP server exposes the following tools.

search_for_games

Search for Steam games by name.

Input:
Game name

Output:
Matching Steam games and app IDs

recommend_similar_games

Find games similar to a selected Steam game.

Input:
appid
platform (optional)

Output:
Similar games

recommend_by_preferences

Recommend games based on Steam tags.

Example:

Tags:
farming
crafting
simulation
management

Optional platform filtering:

windows
mac
linux

get_game_details_tool

Retrieve detailed metadata for a Steam game.

Example information includes:

  • Game name

  • Genres

  • Tags

  • Platform support

  • Ratings

  • Price

  • Description


šŸ› ļø Tech Stack

Backend

  • Python

  • FastAPI

  • Model Context Protocol (MCP)

  • Groq

  • Pandas

  • NumPy

Frontend

  • React

  • JavaScript

  • CSS

Deployment

  • Render

  • Vercel


šŸ“ Project Structure

SteamMCP/
│
ā”œā”€ā”€ src/
│   │
│   ā”œā”€ā”€ agent/
│   │   └── steam_agent.py
│   │
│   ā”œā”€ā”€ api/
│   │   └── main.py
│   │
│   ā”œā”€ā”€ mcp/
│   │   └── server.py
│   │
│   ā”œā”€ā”€ recommenders/
│   │   ā”œā”€ā”€ tag_recommender.py
│   │   └── hybrid_recommender.py
│   │
│   ā”œā”€ā”€ search/
│   │   ā”œā”€ā”€ game_search.py
│   │   └── game_details.py
│   │
│   └── utils/
│       ā”œā”€ā”€ data_loader.py
│       └── filters.py
│
ā”œā”€ā”€ data/
│
ā”œā”€ā”€ requirements.txt
│
└── README.md

āš™ļø Installation

1. Clone the Repository

git clone https://github.com/rayyan2099/SteamMCP.git
cd SteamMCP

2. Create a Virtual Environment

python -m venv venv

Activate it.

macOS / Linux

source venv/bin/activate

Windows

venv\Scripts\activate

3. Install Dependencies

pip install -r requirements.txt

4. Configure Environment Variables

Create a .env file:

GROQ_API_KEY=your_groq_api_key_here

ā–¶ļø Running the Backend

Start the FastAPI server:

uvicorn src.api.main:app --reload

The API will be available at:

http://localhost:8000

šŸ“š API Documentation

FastAPI automatically generates interactive API documentation.

Open:

http://localhost:8000/docs

šŸŽ® API Usage

Recommendation Endpoint

POST /recommend

Request

{
    "query": "I want a relaxing farming game"
}

Response

{
    "recommendation": "Based on your preferences, here are some recommended games..."
}

šŸ¤– Agent Workflow

User Query
    │
    ā–¼
FastAPI Endpoint
    │
    ā–¼
SteamMCP Agent
    │
    ā–¼
Groq LLM
    │
    ā–¼
Tool Selection
    │
    ā–¼
MCP Tool Call
    │
    ā–¼
Steam Recommendation Engine
    │
    ā–¼
Tool Results
    │
    ā–¼
LLM Generates Final Recommendation

🧩 Example Queries

Find Similar Games

Games similar to Stardew Valley

Tag-Based Recommendations

Recommend some open-world survival crafting games

Platform Filtering

Recommend RPG games that work on Mac
Find games similar to Hollow Knight

🧠 Recommendation System

SteamMCP uses multiple recommendation strategies.

Tag-Based Recommendations

Games are compared using Steam tags.

Example:

Input:
farming
crafting
simulation

↓

Find games with similar tags.

Similar Game Recommendations

Given a Steam game's appid, the system identifies games with similar metadata and tags.


Platform Filtering

Recommendations can be filtered based on platform availability.

Supported platforms:

Windows
macOS
Linux

šŸ”’ Tool-Grounded Responses

The AI agent is instructed to avoid hallucinating game information.

The agent:

  • Uses MCP tools to retrieve game data.

  • Does not invent game mechanics or metadata.

  • Uses retrieved information when generating recommendations.

  • Retrieves detailed game information before providing factual details.


🌐 Deployment

Backend

The FastAPI backend is deployed using:

Render

Frontend

The React frontend is deployed using:

Vercel


šŸŽÆ What I Learned

This project explores several concepts in modern AI engineering:

  • AI Agents

  • Tool Calling

  • Model Context Protocol (MCP)

  • LLM Orchestration

  • Agent-to-tool communication

  • REST API development

  • Recommendation systems

  • Cloud deployment

  • Frontend and backend integration


šŸ”® Future Improvements

Potential improvements include:

  • Semantic search using embedding models

  • Improved hybrid recommendation algorithms

  • User accounts and saved recommendations

  • Conversation memory

  • Streaming responses

  • Steam API integration for real-time data

  • Improved frontend UI

  • Recommendation feedback system


šŸ‘Øā€šŸ’» Author

Rayyan Kaukab Faridy


šŸ“„ License

This project is intended for educational and portfolio purposes.


⭐ If you found this project interesting, consider giving the repository a star!

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/rayyan2099/SteamMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server