Back to Browse

Comunio MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Read and operate a Comunio fantasy football team: squad, market, offers, lineup

About

Read and operate a Comunio fantasy football team: squad, market, offers, lineup

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

4 files analyzed · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

Email or username of the Comunio account the server acts for.Optional

Environment variable: COMUNIO_USERNAME

Password of that Comunio account.Required

Environment variable: COMUNIO_PASSWORD

IANA timezone used for the x-timezone header and the login offset. Defaults to Europe/Madrid.Optional

Environment variable: COMUNIO_TIMEZONE

Overrides the browser user agent sent to Comunio. Only needed if the API starts refusing the default.Optional

Environment variable: COMUNIO_USER_AGENT

Documentation

View on GitHub

From the project's GitHub README.

Comunio MCP

CI codecov MCP Registry License: MIT

An MCP (Model Context Protocol) server for Comunio, the online football fantasy manager.

It gives an AI assistant access to your league — squad, market, offers, standings, transfers — and lets it act on your behalf: bid, sell, set the lineup. One line, client ↔ MCP ↔ Comunio, and this is the middle segment.

Status: in daily use against a real account. Nineteen tools: reading the squad, market, offers, standings and transfers, and acting on the market, bids and lineup. It talks to Comunio's unofficial API, which can change without notice — see docs/comunio-api.md for what is mapped and what is not.

How it works

Tools come in two kinds, and the name tells you which:

KindNamingWhat it does
Readget_squad, get_market, get_offersQuery only. Never changes anything. Always safe.
Writeplace_bid, accept_offer, set_lineupChanges your team or spends your money.

Two properties fall out of that:

There is no AI model inside this server, and no strategy either. It translates: it makes Comunio's API callable and its answers legible — unpicking slot numbers, the five different ways one endpoint writes "no data", a ranking field that is 0 for every row. Which player to buy is left to the assistant you are already talking to. No API key, no GPU, no inference cost.

Your client asks before it acts. Every mutating tool declares itself as one, so your MCP client knows to stop and ask you first. The server does not second-guess a move once you have agreed to it, and it reports what Comunio actually answered rather than assuming it worked.

Requirements

  • Docker.
  • A Comunio account. There is no API key and no sign-up — the server logs in as you.

Nothing else needs to be installed on the host.

Quick start

The image is published, so there is nothing to clone and nothing to build. Put your credentials in a file only you can read, rather than in a command your shell will remember:

install -m 600 /dev/null ~/.comunio.env
$EDITOR ~/.comunio.env      # COMUNIO_USERNAME=you
                            # COMUNIO_PASSWORD=...

claude mcp add comunio -- docker run -i --rm \
  --env-file "$HOME/.comunio.env" \
  ghcr.io/josetorronteras/comunio-mcp

Then ask your assistant how your team is doing — get_account is the quickest proof that the credentials work.

For Claude Desktop, for the uvx route that skips Docker entirely, and for what each variable does, see docs/setup.md.

Documentation

  • Setup — running the image and connecting it to an MCP client
  • Tools — what each tool returns and what it touches
  • Development — layout, dev commands, SDK gotchas
  • Architecture — design decisions and the reasoning behind them
  • Comunio API — authentication, the link index and what is still unmapped
  • MCP protocol notes — the parts of MCP 2026-07-28 that shape this project
  • Changelog — what changed in each release

Contributing

Issues and pull requests are welcome. CONTRIBUTING.md covers the setup, what belongs in the server and what does not, and the rules that are not negotiable — no credentials, no tokens and no real account data in a commit. Vulnerabilities go through SECURITY.md rather than a public issue.

Versioning

Releases follow semantic versioning, and what it covers is the MCP surface: tool names, their input schemas, and the fields their responses carry. Renaming a tool, dropping a parameter or removing a field from a response is a major version. Adding a tool, an optional parameter or a field is a minor one.

What it cannot cover is Comunio. This talks to an unofficial API that can change or break without notice, and no version number here can promise otherwise. When it does change, the fix ships as a patch or a minor — the tools stay the same shape.

License

MIT.

Disclaimer

Unofficial project, not affiliated with Comunio. Use it with your own account and at your own risk.

Reviews

No reviews yet

Be the first to review this server!