lolwt

lolwt

3.5

The LoLWT MCP Server provides data from the game League of Legends, enabling developers to access comprehensive game-related information.

The LoLWT MCP Server is a middleware solution that facilitates access to a wide range of data from the popular game, League of Legends. It is designed for developers and enthusiasts who require detailed information on various game elements such as champions, items, and spells. The server supports data retrieval in multiple languages, making it accessible to a global audience. With its flexible integration options, LoLWT allows seamless incorporation of game data into web applications, enhancing user experience and engagement.

Features

  • Comprehensive Data Access: Retrieve data on items, masteries, runes, champions, summoner spells, champion spells, and profile icons.
  • Multi-Language Support: Access data in five languages: French, English, German, Spanish, and Italian.
  • Flexible Integration: Utilize LoLWT-Tags and LoLWT-div for seamless integration with your web applications.

MCP Tools

  • getListOf: Obtain a list of the specified type, such as items, runes, or champions.
  • getItem: Retrieve detailed information about a specific item using its ID.

Usage with Different Platforms

nodejs

javascript
const lolwt = require('lolwt-mcp');
lolwt.getListOf({ language: 'en', argument: 'champion' }).then(data => console.log(data));

python

python
import lolwt_mcp
lolwt_mcp.get_list_of(language='en', argument='champion')