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

@trinity-mcp/trinity-vision

v0.1.0

Published

Trinity Vision — local MCP that gives non-vision models image understanding via Trinity API

Readme

@trinity-mcp/trinity-vision

让没有原生识图能力的 Agent,通过 Trinity API(OpenAI 兼容 chat/completions)看图。

基于开源 claude-vision-skill(MIT)改造为本地 MCP,形态对齐 Trinity Memory

安装

trinity-config --name 选插件(与接 API 分开):

npx -y trinity-config --name vision --type claude -k xh-你的key
npx -y trinity-config --name vision --type claude -k xh-你的key --vision-model qwen-vl-max

| --name | 插件 | |---|---| | vision | Trinity Vision(识图) | | memory | Trinity Memory(代码图谱) |

手动配置示例:

{
  "mcpServers": {
    "trinity-vision": {
      "command": "npx",
      "args": ["-y", "@trinity-mcp/trinity-vision"],
      "env": {
        "TRINITY_API_KEY": "xh-你的key",
        "TRINITY_VISION_MODEL": "qwen-vl-max"
      }
    }
  }
}

MCP Tools

| Tool | 说明 | |------|------| | vision_describe | 描述图片(本地路径或 URL) | | vision_ask | 就图片提问 | | vision_status | 查看配置(不回显完整 Key) |

环境变量

| 变量 | 默认 | 说明 | |------|------|------| | TRINITY_API_KEY | — | 必填;兼容 OPENAI_API_KEY | | TRINITY_BASE_URL | https://api.trinitydesk.ai/v1 | 兼容 OPENAI_BASE_URL | | TRINITY_VISION_MODEL | qwen-vl-max | 须支持 image_url 的上架模型 | | TRINITY_VISION_MAX_TOKENS | 1024 | | | TRINITY_VISION_TIMEOUT_MS | 60000 | | | TRINITY_VISION_MAX_IMAGE_BYTES | 10485760 | 默认 10 MiB |

开发

npm install
npm run typecheck
npm run test
npm run build

许可证

MIT。上游声明见 NOTICE.md