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

teneo-book-mcp

v1.0.1

Published

MCP server for Teneo Book Generation — let an AI agent generate a complete, publish-ready non-fiction book (manuscript + cover + PDF/EPUB/DOCX).

Readme

Teneo Book Generation — MCP server

Let any MCP-capable agent (Claude Desktop, Cursor, etc.) generate a complete, publish-ready non-fiction book — full manuscript + cover + PDF/EPUB/DOCX — through Teneo's agent API.

Tools

| Tool | What it does | |---|---| | teneo_capabilities | Discover auth, pricing, fields, workflow, use cases, output shape. | | teneo_generate_book | Start a book (async) → returns a jobId. ~45 min. Charged in credits. | | teneo_book_status | Poll a job; when completed, returns download URLs for cover + PDF/EPUB/DOCX. | | teneo_generate_outline | Generate an outline without running the full book pipeline. | | teneo_generate_cover | Generate a cover only. | | teneo_evaluate_book | Run evaluation on an existing generated book. | | teneo_research_niche | Start niche research from a seed topic. |

Setup

  1. Get a key. In your Teneo dashboard create an API key (or POST /api/agent/keys while logged in). It's tied to your credit balance — top up at https://teneo.io/pricing.
  2. Add to your MCP client. Example (Claude Desktop claude_desktop_config.json):
{
  "mcpServers": {
    "teneo-book": {
      "command": "npx",
      "args": ["-y", "teneo-book-mcp"],
      "env": { "TENEO_API_KEY": "tk_live_your_key" }
    }
  }
}

Ecosystem agents can instead set TENEO_SERVICE_KEY + TENEO_ON_BEHALF_OF. Point at staging with TENEO_BASE_URL=https://staging.teneo.io.

Develop / verify

npm test                 # unit tests (mocked fetch) for the HTTP client
TENEO_BASE_URL=https://staging.teneo.io TENEO_API_KEY=tk_live_... npm run integration-test   # real staging end-to-end (charges credits)
TENEO_API_KEY=tk_live_... npm start                  # run the MCP server (stdio)

client.mjs is the pure, testable HTTP client (no SDK deps); server.mjs wraps it as MCP tools. Mirrors https://teneo.io/openapi/agent-book-generation.yaml.

Publishing & promotion (how agents find this)

  1. npm publish (teneo-book-mcp — unscoped, public by default).
  2. Submit to MCP registries so agent builders discover it:
    • Official MCP registry, Smithery (smithery.ai), mcp.so, Glama (glama.ai/mcp).
  3. Link it from https://teneo.io/llms.txt, the /for-agents page, and the OpenAPI.
  4. Provide the config snippet above in docs + directory listings (copy-paste = adoption).

See docs/agents/AGENT-INTEGRATION.md for the full promotion plan and DX audit.

Registry metadata

  • Official MCP Registry name: io.github.traviseric/teneo-book-mcp
  • npm package: teneo-book-mcp
  • Homepage: https://teneo.io/for-agents
  • OpenAPI: https://teneo.io/openapi/agent-book-generation.yaml
  • Source directory: scripts/agent-mcp
  • Registry file: server.json
  • Smithery config: smithery.yaml