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

@occirank/1492vision-mcp-server

v1.0.7

Published

Model Context Protocol server for 1492vision API

Downloads

13

Readme

1492 Vision MCP Server

A Model Context Protocol (MCP) server for interacting with the 1492 Vision API.
This server allows easy integration with Claude for Desktop, N8N, and other MCP-compatible clients.

Features

  • Exposes 1492 Vision API functionality through MCP tools
  • Provides prompts for common SEO tasks
  • Easy integration with workflow automation tools like N8N

Tools

1. Beta Tools

  • beta_test

    • Perform simple authenticated test.
  • beta_api_quota

    • Returns the user quota (for API calls) remaining for the day.
  • beta_host_batch

    • Rreturns the top 10 hosts with the most articles of the domain given from the urls list.
    • Inputs:
      • urls (string[]): List of requested urls.
      • days (integer): Given period of search.
      • lang (string): Language of the output.
  • beta_entities_bag_list

    • Returns the list of entities bags for the user.
  • beta_entities_bag_related_entities

    • Returns the list of related entities for the given bag.
    • Inputs:
      • bag_uuid (string): Uuid of the bag.
      • lang (string): Language of the output.
      • extra_entities (boolean): If True, includes extra entities (more exotic entities).
  • beta_entities_bag_latest_articles

    • Returns the latest articles for the given bag.
    • Inputs:
      • bag_uuid (string): Uuid of the bag.
      • days (integer): Given period of search.
      • lang (string): Language of the output.
  • beta_entities_bag_best_articles

    • Returns the top 20 domains for the given bag.
    • Inputs:
      • bag_uuid (string): Uuid of the bag.
      • days (integer): Given period of search.
      • lang (string): Language of the output.
  • beta_entities_bag_top_domains

    • Retrieves a list of synonyms related to a given keyword.
    • Inputs:
      • bag_uuid (string): Uuid of the bag.
      • days (integer): Given period of search.
      • lang (string): Language of the output.

2. Wip Tools

  • wip_livetrends

    • Retrieves livetrends at different importance levels.
    • Inputs:
      • lang (string): Language of the output.
      • min (integer): Uuid of the bag.
      • no_thing (boolean): "".
      • less_sport (boolean): "".
      • topic_id (integer): Id of the topic.
  • wip_host_folders

    • Returns the folders for the given host.
    • Input:
      • host (string): Host to look for.
  • wip_host_latest_articles

    • Returns the latest articles for the given host.
    • Inputs:
      • host (string): Host to look for.
      • days (integer): Given period of search.
      • lang (string): Language of the articles.
      • folder (string): "".
  • wip_host_best_articles

    • Returns the best articles for the given host.
    • Inputs:
      • host (string): Host to look for.
      • days (integer): Given period of search.
      • lang (string): Language of the articles.
      • folder (string): "".
  • wip_urls_entities

    • Returns the entities for the given urls (max 50 per call).
    • Inputs:
      • urls (string[]): List of requested urls.
      • days (integer): Given period of search.
      • lang (string): Language of the articles.
  • wip_urls_topics

    • Returns the topics for the given urls (max 50 per call).
    • Inputs:
      • urls (string[]): List of requested urls.
      • days (integer): Given period of search.
      • lang (string): Language of the articles.
  • wip_entity_latest_articles

    • Returns the latest articles for the given entity.
    • Inputs:
      • entity_id (string): Id of the requested entity.
      • days (integer): Given period of search.
      • lang (string): Language of the articles.
  • wip_entity_best_articles

    • Returns the best articles for the given entity.
    • Inputs:
      • entity_id (string): Id of the requested entity.
      • days (integer): Given period of search.
      • lang (string): Language of the articles.
  • wip_entity_related_entities

    • Returns the related entities for the given entity.
    • Inputs:
      • entity_id (string): Id of the requested entity.
      • days (integer): Given period of search.
      • lang (string): Language of the articles.

Configuration

  1. Sign up for an 1492 Vision account.
  2. Choose a plan.
  3. Generate your API key.
  4. Use the API key for the 1492 Vsion server in the Claude Desktop configuration file.

Usage with Claude Desktop

Add this server to your Claude Desktop configuration file claude_desktop_config.json:

NPX

{
  "mcpServers": {
    "1492vision": {
      "command": "npx",
      "args": [
        "@occirank/1492vision-mcp-server"
      ],
      "env": {
        "ACCESS_API_KEY": "your_1492vision_api_key"
      }
    }
  }
}

License

MIT