- Home
- MCP servers
- Epic Free Games
Epic Free Games
- python
0
GitHub Stars
python
Language
3 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"pixfishx-mcp-epic-free-games": {
"command": "uvx",
"args": [
"mcp-epic-free-games"
],
"env": {
"TIME_ZONE": "Asia/Shanghai"
}
}
}
}You can access Epic Games Store free games information through an MCP server that exposes handy tools to fetch currently free games and upcoming free games. This lets your MCP client query up-to-date game details and links in a consistent, scriptable way.
How to use
Configure your MCP client to connect to the epic_free_games server using the stdio integration. This enables you to request lists of currently free games and upcoming free games from Epic Games Store, then use the results in your workflows or dashboards.
To connect, add the following MCP server entry to your client configuration. It runs locally through the uvx launcher and uses the provided package name to start the server.
{
"mcpServers": {
"epic-free-games": {
"type": "stdio",
"description": "Get free game information from Epic Games Store.",
"command": "uvx",
"args": [
"mcp-epic-free-games"
],
"env": {
"TIME_ZONE": "Asia/Shanghai"
}
}
}
}
How to install
Prerequisites: ensure you have Python installed (Python 3.x) and that you can install Python packages with pip.
Step 1: Install the MCP Epic Free Games package.
pip install mcp-epic-free-games
Step 2: Use the MCP client to connect to the server as described in the usage section. The server is intended to be run via the stdio interface using uvx as shown in the configuration example.
Configuration and usage notes
The server exposes two main tools for you to consume through your MCP client:
-
get_now_free_games: returns information about currently free games, including title, description, cover image, claim URL, and the free period dates.
-
get_upcoming_free_games: returns information about upcoming free games, including title, description, cover image, claim URL, and the free period dates.
Available tools
get_now_free_games
Fetches information about games that are currently free on the Epic Games Store. Returns title, description, cover image, claim URL, and the current free period dates.
get_upcoming_free_games
Fetches information about games that will be free in the future on the Epic Games Store. Returns title, description, cover image, claim URL, and the upcoming free period dates.