AgentStack
MCP verified MIT Self-run

Mcp Sports Nlp

mcp-leomaurodesenv-mcp-sports-nlp · by leomaurodesenv

This is a learning repository about Model Context Protocol (MCP) accessing Sports Datasets

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add mcp-leomaurodesenv-mcp-sports-nlp

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Mcp Sports Nlp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

🎓 mcp-sports-nlp

[](https://github.com/leomaurodesenv/mcp-sports-nlp) [](LICENSE) [](https://github.com/leomaurodesenv/mcp-sports-nlp/actions/workflows/continuous-integration.yml)

This is a learning repository about the Model Context Protocol (MCP) and its application for accessing Sports Datasets, named QASports. QASports is the first large sports-themed question answering dataset counting over 1 million questions and answers about 124k preprocessed wiki pages, using as documents the wiki of 20 of the most popular sports in the world, like Soccer, American Football, Basketball, Cricket, and so on. In this MCP server, you can make questions about the QASports dataset. For example,

graph TD;
    A(Question :: Show me a summary of questions about handball in qasports dataset) --> B(Answer :: Based on the handball questions available in qasports, here's a summary of the types of questions covered: historical events, teams and clubs, player movements, contract signings, and tournament data...);

What is Model Context Protocol (MCP)?

"MCP is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications. Just as USB-C provides a standardized way to connect your devices to various peripherals and accessories, MCP provides a standardized way to connect AI models to different data sources and tools." (modelcontextprotocol) Its structure is composed by:

  • MCP Hosts: Programs like Claude Desktop, IDEs, or AI tools that access data through MCP.
  • MCP Servers: Lightweight programs that expose specific capabilities through the standardized Model Context Protocol.
  • Data Sources: Your computer’s files, databases, or external systems available over the internet (e.g., through APIs).

Project Structure

This repository is structured as follows:

  • weather/: Contains code related to accessing and processing weather data, based on quickstarter server.
  • qasports/: Contains code related to accessing and processing sports data, based on qasports.

Adding the Server to Claude AI (or other MCP Hosts)

You can add your MCP server to Claude AI or any other MCP Clients that support the protocol.

Adding the Command Line Interface to Claude AI

Using Claude AI, you can inform how to access this MCP server via command line interface. You can read more in quickstarter.

For MacOS/Linux

code ~/Library/Application\ Support/Claude/claude_desktop_config.json`

Windows

code $env:AppData\Claude\claude_desktop_config.json

Then, you need to fill the JSON file with the MCP server information.

{
  "mcpServers": {
    "weather": {
      "command": "uv",
      "args": [
        "--directory",
        "/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather",
        "run",
        "main.py"
      ]
    }
  }
}

Adding the Server to MCP Host

To use the MCP server with an MCP Host like Claude AI, follow these general steps:

  1. Start the MCP Server:
  • Navigate to the server's directory (e.g., cd weather/).
  • Run the server according to its instructions. For example, uv run main.py.
  • By default, the quickstart server from the MCP documentation runs on http://localhost:3000. Note the host and port your server is running on.
  1. Configure the MCP Host (Claude AI):
  • Open your MCP Host application (e.g., Claude Desktop).
  • Look for an option to add or manage MCP Servers. This might be in settings, preferences, or a dedicated "Context Sources" or "MCP Servers" section.
  • Add a new server and provide the address where your MCP server is running (e.g., http://localhost:3000).
  • Once added and enabled, the MCP Host should be able to query your server for context.

Please refer to the specific documentation of your MCP Host for the exact steps to add a new MCP server, as the UI and terminology might vary.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.