videogame-encyclopedia-mcp-server 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -6
- package/dist/config.d.ts +0 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +0 -5
- package/dist/config.js.map +1 -1
- package/dist/tools/steam.d.ts +8 -7
- package/dist/tools/steam.d.ts.map +1 -1
- package/dist/tools/steam.js +13 -18
- package/dist/tools/steam.js.map +1 -1
- package/dist/types.d.ts +44 -39
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,13 +50,23 @@ A Model Context Protocol (MCP) server that provides structured video game inform
|
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
Edit `.env` and add your API keys:
|
|
53
|
-
- **
|
|
54
|
-
- **SteamGridDB API Key**: Get from https://www.steamgriddb.com/profile/preferences/api
|
|
53
|
+
- **SteamGridDB API Key**: Required for high-quality game assets (grids, heroes, logos). Get it at [steamgriddb.com](https://www.steamgriddb.com/profile/api).
|
|
55
54
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
## Configuration
|
|
56
|
+
|
|
57
|
+
The server requires the following environment variables:
|
|
58
|
+
|
|
59
|
+
| Variable | Description |
|
|
60
|
+
|----------|-------------|
|
|
61
|
+
| `STEAMGRIDDB_API_KEY` | Your SteamGridDB API key |
|
|
62
|
+
|
|
63
|
+
## Setup
|
|
64
|
+
|
|
65
|
+
### 1. Environment Variables
|
|
66
|
+
Create a `.env` file in the root directory:
|
|
67
|
+
```env
|
|
68
|
+
STEAMGRIDDB_API_KEY=your_steamgriddb_key_here
|
|
69
|
+
```
|
|
60
70
|
|
|
61
71
|
4. **Build the project**
|
|
62
72
|
```bash
|
package/dist/config.d.ts
CHANGED
package/dist/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,MAAM;IACnB,
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,MAAM;IACnB,iBAAiB,EAAE,MAAM,CAAC;CAC7B;AAED,wBAAgB,UAAU,IAAI,MAAM,CAYnC"}
|
package/dist/config.js
CHANGED
|
@@ -2,16 +2,11 @@ import dotenv from 'dotenv';
|
|
|
2
2
|
// Load environment variables
|
|
3
3
|
dotenv.config();
|
|
4
4
|
export function loadConfig() {
|
|
5
|
-
const steamApiKey = process.env.STEAM_API_KEY;
|
|
6
5
|
const steamGridDbApiKey = process.env.STEAMGRIDDB_API_KEY;
|
|
7
|
-
if (!steamApiKey) {
|
|
8
|
-
throw new Error('STEAM_API_KEY is not set. Please set it in your .env file or environment variables.');
|
|
9
|
-
}
|
|
10
6
|
if (!steamGridDbApiKey) {
|
|
11
7
|
throw new Error('STEAMGRIDDB_API_KEY is not set. Please set it in your .env file or environment variables.');
|
|
12
8
|
}
|
|
13
9
|
return {
|
|
14
|
-
steamApiKey,
|
|
15
10
|
steamGridDbApiKey,
|
|
16
11
|
};
|
|
17
12
|
}
|
package/dist/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,QAAQ,CAAC;AAE5B,6BAA6B;AAC7B,MAAM,CAAC,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,QAAQ,CAAC;AAE5B,6BAA6B;AAC7B,MAAM,CAAC,MAAM,EAAE,CAAC;AAMhB,MAAM,UAAU,UAAU;IACtB,MAAM,iBAAiB,GAAG,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC;IAE1D,IAAI,CAAC,iBAAiB,EAAE,CAAC;QACrB,MAAM,IAAI,KAAK,CACX,2FAA2F,CAC9F,CAAC;IACN,CAAC;IAED,OAAO;QACH,iBAAiB;KACpB,CAAC;AACN,CAAC"}
|
package/dist/tools/steam.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import type { SteamSearchInput, SteamDetailsInput } from '../types.js';
|
|
2
2
|
/**
|
|
3
|
-
* Search for games on Steam by name
|
|
3
|
+
* Search for games on Steam by name using the public Store Search API
|
|
4
4
|
*/
|
|
5
5
|
export declare function searchSteamGames(input: SteamSearchInput): Promise<{
|
|
6
|
-
results:
|
|
6
|
+
results: {
|
|
7
|
+
appid: number;
|
|
8
|
+
name: string;
|
|
9
|
+
}[];
|
|
7
10
|
count: number;
|
|
8
11
|
}>;
|
|
9
12
|
/**
|
|
@@ -18,15 +21,13 @@ export declare function getSteamGameDetails(input: SteamDetailsInput): Promise<{
|
|
|
18
21
|
about: string;
|
|
19
22
|
header_image: string;
|
|
20
23
|
capsule_image: string;
|
|
21
|
-
website: string
|
|
24
|
+
website: string;
|
|
22
25
|
developers: string[];
|
|
23
26
|
publishers: string[];
|
|
24
27
|
price: {
|
|
25
28
|
currency: string;
|
|
26
29
|
initial: number;
|
|
27
30
|
final: number;
|
|
28
|
-
discount_percent: number;
|
|
29
|
-
initial_formatted: string;
|
|
30
31
|
final_formatted: string;
|
|
31
32
|
} | undefined;
|
|
32
33
|
platforms: {
|
|
@@ -34,8 +35,8 @@ export declare function getSteamGameDetails(input: SteamDetailsInput): Promise<{
|
|
|
34
35
|
mac: boolean;
|
|
35
36
|
linux: boolean;
|
|
36
37
|
};
|
|
37
|
-
categories:
|
|
38
|
-
genres:
|
|
38
|
+
categories: any[];
|
|
39
|
+
genres: any[];
|
|
39
40
|
release_date: {
|
|
40
41
|
coming_soon: boolean;
|
|
41
42
|
date: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"steam.d.ts","sourceRoot":"","sources":["../../src/tools/steam.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAGR,gBAAgB,EAChB,iBAAiB,EACpB,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"steam.d.ts","sourceRoot":"","sources":["../../src/tools/steam.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAGR,gBAAgB,EAChB,iBAAiB,EACpB,MAAM,aAAa,CAAC;AAMrB;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,KAAK,EAAE,gBAAgB;;;;;;GAoB7D;AAED;;GAEG;AACH,wBAAsB,mBAAmB,CAAC,KAAK,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCjE"}
|
package/dist/tools/steam.js
CHANGED
|
@@ -1,27 +1,22 @@
|
|
|
1
1
|
import axios from 'axios';
|
|
2
|
-
const
|
|
2
|
+
const STORE_SEARCH_URL = 'https://store.steampowered.com/api/storesearch/';
|
|
3
3
|
const STEAM_APP_DETAILS_URL = 'https://store.steampowered.com/api/appdetails';
|
|
4
|
-
// Cache for the app list to avoid repeated requests
|
|
5
|
-
let appListCache = null;
|
|
6
|
-
let appListCacheTime = 0;
|
|
7
|
-
const CACHE_DURATION = 1000 * 60 * 60 * 24; // 24 hours
|
|
8
4
|
/**
|
|
9
|
-
* Search for games on Steam by name
|
|
5
|
+
* Search for games on Steam by name using the public Store Search API
|
|
10
6
|
*/
|
|
11
7
|
export async function searchSteamGames(input) {
|
|
12
8
|
const { query, limit = 10 } = input;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
.slice(0, limit);
|
|
9
|
+
const response = await axios.get(STORE_SEARCH_URL, {
|
|
10
|
+
params: {
|
|
11
|
+
term: query,
|
|
12
|
+
l: 'english',
|
|
13
|
+
cc: 'US'
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
const matches = response.data.items.map(item => ({
|
|
17
|
+
appid: item.id,
|
|
18
|
+
name: item.name
|
|
19
|
+
})).slice(0, limit);
|
|
25
20
|
return {
|
|
26
21
|
results: matches,
|
|
27
22
|
count: matches.length,
|
package/dist/tools/steam.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"steam.js","sourceRoot":"","sources":["../../src/tools/steam.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"steam.js","sourceRoot":"","sources":["../../src/tools/steam.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,MAAM,gBAAgB,GAAG,iDAAiD,CAAC;AAC3E,MAAM,qBAAqB,GAAG,+CAA+C,CAAC;AAE9E;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,gBAAgB,CAAC,KAAuB;IAC1D,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,KAAK,CAAC;IAEpC,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAA2B,gBAAgB,EAAE;QACzE,MAAM,EAAE;YACJ,IAAI,EAAE,KAAK;YACX,CAAC,EAAE,SAAS;YACZ,EAAE,EAAE,IAAI;SACX;KACJ,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QAC7C,KAAK,EAAE,IAAI,CAAC,EAAE;QACd,IAAI,EAAE,IAAI,CAAC,IAAI;KAClB,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;IAEpB,OAAO;QACH,OAAO,EAAE,OAAO;QAChB,KAAK,EAAE,OAAO,CAAC,MAAM;KACxB,CAAC;AACN,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,mBAAmB,CAAC,KAAwB;IAC9D,MAAM,EAAE,KAAK,EAAE,GAAG,KAAK,CAAC;IAExB,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,CAC5B,qBAAqB,EACrB;QACI,MAAM,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE;KAC5B,CACJ,CAAC;IAEF,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IAErC,IAAI,CAAC,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC;QAC/B,MAAM,IAAI,KAAK,CAAC,oBAAoB,KAAK,2BAA2B,CAAC,CAAC;IAC1E,CAAC;IAED,MAAM,IAAI,GAAG,OAAO,CAAC,IAAK,CAAC;IAE3B,OAAO;QACH,KAAK,EAAE,IAAI,CAAC,WAAW;QACvB,IAAI,EAAE,IAAI,CAAC,IAAI;QACf,IAAI,EAAE,IAAI,CAAC,IAAI;QACf,WAAW,EAAE,IAAI,CAAC,iBAAiB;QACnC,oBAAoB,EAAE,IAAI,CAAC,oBAAoB;QAC/C,KAAK,EAAE,IAAI,CAAC,cAAc;QAC1B,YAAY,EAAE,IAAI,CAAC,YAAY;QAC/B,aAAa,EAAE,IAAI,CAAC,aAAa;QACjC,OAAO,EAAE,IAAI,CAAC,OAAO;QACrB,UAAU,EAAE,IAAI,CAAC,UAAU,IAAI,EAAE;QACjC,UAAU,EAAE,IAAI,CAAC,UAAU,IAAI,EAAE;QACjC,KAAK,EAAE,IAAI,CAAC,cAAc;QAC1B,SAAS,EAAE,IAAI,CAAC,SAAS;QACzB,UAAU,EAAE,IAAI,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,EAAE;QACjE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,EAAE;QACzD,YAAY,EAAE,IAAI,CAAC,YAAY;QAC/B,OAAO,EAAE,IAAI,CAAC,OAAO;QACrB,mBAAmB,EAAE,IAAI,CAAC,mBAAmB;KAChD,CAAC;AACN,CAAC"}
|
package/dist/types.d.ts
CHANGED
|
@@ -5,55 +5,60 @@ export interface SteamApp {
|
|
|
5
5
|
appid: number;
|
|
6
6
|
name: string;
|
|
7
7
|
}
|
|
8
|
-
export interface
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
export interface SteamAppDetails {
|
|
14
|
-
success: boolean;
|
|
15
|
-
data?: {
|
|
8
|
+
export interface SteamStoreSearchResponse {
|
|
9
|
+
total: number;
|
|
10
|
+
items: {
|
|
11
|
+
id: number;
|
|
16
12
|
name: string;
|
|
17
|
-
|
|
18
|
-
steam_appid: number;
|
|
19
|
-
required_age: number;
|
|
20
|
-
is_free: boolean;
|
|
21
|
-
detailed_description: string;
|
|
22
|
-
short_description: string;
|
|
23
|
-
about_the_game: string;
|
|
24
|
-
supported_languages: string;
|
|
25
|
-
header_image: string;
|
|
26
|
-
capsule_image: string;
|
|
27
|
-
capsule_imagev5: string;
|
|
28
|
-
website?: string;
|
|
29
|
-
developers?: string[];
|
|
30
|
-
publishers?: string[];
|
|
31
|
-
price_overview?: {
|
|
13
|
+
price?: {
|
|
32
14
|
currency: string;
|
|
33
15
|
initial: number;
|
|
34
16
|
final: number;
|
|
35
|
-
discount_percent: number;
|
|
36
|
-
initial_formatted: string;
|
|
37
|
-
final_formatted: string;
|
|
38
17
|
};
|
|
39
|
-
platforms
|
|
18
|
+
platforms?: {
|
|
40
19
|
windows: boolean;
|
|
41
20
|
mac: boolean;
|
|
42
21
|
linux: boolean;
|
|
43
22
|
};
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
23
|
+
}[];
|
|
24
|
+
}
|
|
25
|
+
export interface SteamAppDetails {
|
|
26
|
+
steam_appid: number;
|
|
27
|
+
name: string;
|
|
28
|
+
type: string;
|
|
29
|
+
short_description: string;
|
|
30
|
+
detailed_description: string;
|
|
31
|
+
about_the_game: string;
|
|
32
|
+
header_image: string;
|
|
33
|
+
capsule_image: string;
|
|
34
|
+
website: string;
|
|
35
|
+
developers?: string[];
|
|
36
|
+
publishers?: string[];
|
|
37
|
+
price_overview?: {
|
|
38
|
+
currency: string;
|
|
39
|
+
initial: number;
|
|
40
|
+
final: number;
|
|
41
|
+
final_formatted: string;
|
|
42
|
+
};
|
|
43
|
+
platforms: {
|
|
44
|
+
windows: boolean;
|
|
45
|
+
mac: boolean;
|
|
46
|
+
linux: boolean;
|
|
47
|
+
};
|
|
48
|
+
categories?: {
|
|
49
|
+
id: number;
|
|
50
|
+
description: string;
|
|
51
|
+
}[];
|
|
52
|
+
genres?: {
|
|
53
|
+
id: string;
|
|
54
|
+
description: string;
|
|
55
|
+
}[];
|
|
56
|
+
release_date: {
|
|
57
|
+
coming_soon: boolean;
|
|
58
|
+
date: string;
|
|
56
59
|
};
|
|
60
|
+
is_free: boolean;
|
|
61
|
+
supported_languages: string;
|
|
57
62
|
}
|
|
58
63
|
export interface SteamGridGame {
|
|
59
64
|
id: number;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,MAAM,WAAW,QAAQ;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED