npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@honem/teletext-mcp

v1.0.0

Published

MCP (Model Context Protocol) server for teletext from public broadcasters. Works with Claude Desktop, Cursor, VS Code, Continue, Goose, Windsurf, Codex CLI, and any other MCP-capable client.

Readme

@honem/teletext-mcp

Teletext is alive and well — let your AI assistant read it.

An MCP (Model Context Protocol) server that exposes public-broadcaster teletext as tools your model can call. Works with Claude Desktop, Cursor, VS Code Copilot Chat, Continue, Goose, Windsurf, Cline, Codex CLI, and anything else that speaks MCP over stdio.

Currently registered: ČT (Czechia) and SVT Text (Sweden). More providers welcome.

The one command everything reduces to

npx -y @honem/teletext-mcp

Wire it into your client

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "teletext": {
      "command": "npx",
      "args": ["-y", "@honem/teletext-mcp"]
    }
  }
}

Cursor

.cursor/mcp.json (per-project) or ~/.cursor/mcp.json (global) — same mcpServers shape as above.

VS Code (Copilot Chat)

.vscode/mcp.json:

{
  "servers": {
    "teletext": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@honem/teletext-mcp"]
    }
  }
}

Codex CLI

~/.codex/config.toml:

[mcp_servers.teletext]
command = "npx"
args = ["-y", "@honem/teletext-mcp"]

Continue, Goose, Cline, Windsurf — drop the same snippet into their respective config. They all converged on the same shape, bless them.

What your model can now do

| Tool | What it does | |------------------|------------------------------------------------------------| | list_providers | Lists all broadcasters. Optional filter (e.g. "sweden"). | | get_page | Fetches a page (and subpage, if you ask) as plain text. | | get_index | Returns the parsed topic → page-number table. | | get_topic | Concatenates every page in a topic (news, weather, …). | | search | Substring search across the whole snapshot. | | refresh | Forces a fresh fetch, bypassing the 60-second cache. |

With one provider registered, provider is optional. With several, your model picks one.

Try it

"What teletexts are available?"list_providers "Show me Swedish weather from teletext."get_topic with provider=svt, topic=weather "Search Czech teletext for Babiš."search with provider=ct

What lands on disk

One file per broadcaster: ~/.cache/teletext/<code>/latest.json. ~1–5 MB, overwritten in place, 60-second TTL. That's it.

Caveats

Teletext is a live ticker — there's no history. If you ask "what was on page 130 yesterday?", the answer is we don't know and neither do they. The tool descriptions tell your model this so it doesn't make things up.

License

MIT.