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

@yokuapp/mcp-server

v1.0.1

Published

Yoku is a developer-first platform that provides structured, real-time brand identity and company data through a simple API.

Downloads

189

Readme

Yoku MCP Server

Yoku MCP Server provides brand intelligence tools for AI assistants through the Model Context Protocol (MCP). This server enables AI assistants like Claude to retrieve comprehensive brand data including logos, colors, social profiles, and more.

Features

  • Brand Retrieval: Get detailed brand information by domain, name, ticker, or ISIN
  • Brand Search: Fuzzy search for brands with autocomplete support
  • Rich Data: Access logos, colors, social profiles, ratings, and more
  • Easy Integration: Works with Claude Desktop, Cursor, and other MCP clients

Installation

Prerequisites

Install via npm

npm install -g @yokuapp/mcp-server

Install from source

git clone https://github.com/yokuapp/mcp-server.git
cd mcp-server
npm install
npm run build

Configuration

Create a .env file in your project directory or set environment variables:

# Required
YOKU_API_KEY=your_api_key_here

# Optional (these are the defaults)
YOKU_API_BASE_URL=https://api.yoku.app
YOKU_CDN_BASE_URL=https://cdn.yoku.app
YOKU_REQUEST_TIMEOUT=30000

Usage

With Claude Desktop

Add the server to your Claude Desktop configuration:

MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "yoku": {
      "command": "npx",
      "args": ["-y", "@yokuapp/mcp-server"],
      "env": {
        "YOKU_API_KEY": "your_api_key_here"
      }
    }
  }
}

Or if installed from source:

{
  "mcpServers": {
    "yoku": {
      "command": "node",
      "args": ["/path/to/mcp-server/build/index.js"],
      "env": {
        "YOKU_API_KEY": "your_api_key_here"
      }
    }
  }
}

With Cursor

Add to your Cursor MCP settings (if supported).

Direct Usage

You can also run the server directly:

YOKU_API_KEY=your_key node build/index.js

Available Tools

brand.get

Retrieve comprehensive brand information by domain, name, ticker, or ISIN.

Parameters:

  • domain (optional): Brand domain (e.g., "nike.com")
  • name (optional): Brand or company name (e.g., "Nike")
  • ticker (optional): Stock ticker symbol (e.g., "NKE")
  • isin (optional): International Securities Identification Number

Example:

Get brand information for nike.com

Response includes:

  • Basic information (title, description, slogan)
  • Contact details (email, phone, website)
  • Brand assets (logos, icons) with CDN URLs
  • Color palette with hex values
  • Social media profiles
  • Ratings and reviews
  • Industry classification
  • And more...

brand.search

Search for brands using fuzzy matching for discovery and autocomplete.

Parameters:

  • q (required): Search query (1-255 characters)
  • limit (optional): Maximum results to return (1-100, default: 10)
  • offset (optional): Number of results to skip (default: 0)
  • country (optional): Two-letter country code filter (e.g., "US", "FR")

Example:

Search for brands matching "nike"

Response includes:

  • Total count of matches
  • Array of matching brands with relevance scoring

Example Conversations

Once configured, you can ask Claude:

  • "Get the brand information for nike.com"
  • "Search for coffee brands in France"
  • "Find the logo and colors for stripe.com"
  • "Look up the company with ticker AAPL"
  • "Search for brands similar to shopify"

Development

Build

npm run build

Project Structure

src/
├── index.ts        # Main MCP server
├── config.ts       # Configuration management
└── api-client.ts   # Yoku API client

Troubleshooting

"Missing required environment variable: YOKU_API_KEY"

Make sure you've set the YOKU_API_KEY environment variable or created a .env file.

"API request failed with status 401"

Your API key is invalid or expired. Get a new one from yoku.app/dashboard.

"API request failed with status 429"

You've exceeded your API rate limit. Check your plan limits or wait for the rate limit to reset.

Support

License

ISC

About Yoku

Yoku is a developer-first platform that provides structured, real-time brand identity and company data through a simple API. Get comprehensive brand information including logos, colors, social profiles, ratings, and more.

Visit yoku.app to learn more.