🤾

TeamOps

LUGI Handboll

Pojkar 2014

Connect your AI assistant

Set up Claude Code to answer questions about Pojkar 2014 games using live data.

Prerequisites

  • ✓ Claude Code installed and working: claude --version
  • ✓ Your team's MCP URL for Pojkar 2014 (shown below)
Your MCP URL: https://team.rdops.com/en/lugihf/p2014/mcp
1

Register the MCP server

Run this once in your terminal to register your team's data source:

claude mcp add --transport http teamops-lugihf-p2014 https://team.rdops.com/en/lugihf/p2014/mcp

This updates ~/.claude/mcp.json:

{
  "mcpServers": {
    "teamops-lugihf-p2014": {
      "type": "http",
      "url": "https://team.rdops.com/en/lugihf/p2014/mcp"
    }
  }
}

Then enable it in ~/.claude/settings.json:

{
  "enabledMcpjsonServers": [
    "teamops-lugihf-p2014"
  ]
}
2

Create the skill plugin

The skill tells Claude when and how to use the teamops-lugihf-p2014 server. Create these files:

Directory structure:

~/.claude/skills/teamops-lugihf-p2014/
  .claude-plugin/
    plugin.json
  skills/
    teamops-lugihf-p2014/
      SKILL.md

.claude-plugin/plugin.json

{
  "name": "teamops-lugihf-p2014",
  "description": "Pojkar 2014 handball team schedule and game info",
  "version": "1.0.0",
  "author": {
    "name": "your-name"
  }
}

skills/teamops-lugihf-p2014/SKILL.md

---
name: teamops-lugihf-p2014
description: Use this skill when the user asks about upcoming handball games,
  matches, or schedule for Pojkar 2014. Triggers on questions like
  "when does my son play?", "what games do we have this weekend?",
  "what time do we need to be there?", or any question about the
  Pojkar 2014 team schedule, opponents, or logistics.
---

Use the `teamops-lugihf-p2014` MCP server to answer the user's question.
Look up upcoming games, match schedules, opponent teams, trainer
attendance, and timing information from that server.

When answering:
- Lead with the most relevant info (e.g. next game date/time)
- Include location and arrival time where relevant
- Mention which trainers are attending if available
- Keep responses concise and parent-friendly
3

Register the plugin

Add the plugin path to ~/.claude/settings.json:

{
  "enabledMcpjsonServers": [
    "teamops-lugihf-p2014"
  ],
  "plugins": [
    "/home/YOUR_USER/.claude/skills/teamops-lugihf-p2014"
  ]
}

Replace YOUR_USER with your actual system username.

How it works

Once set up, Claude automatically detects schedule-related questions and fetches live game data. No slash command needed — just ask naturally:

→ "when does my son play next?"
→ "what games do we have this weekend?"
→ "what time do we need to be there on Saturday?"