peeptrend-mcp 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { type PeepTrendMcpConfig } from "./config.js";
2
- export declare const serverVersion = "0.1.0";
2
+ export declare const serverVersion = "0.1.1";
3
3
  export type CliAction = "help" | "version" | "doctor" | "manual" | "stdio" | "unknown";
4
4
  export declare function resolveCliAction(args: string[], stdinIsTty: boolean): CliAction;
5
5
  export declare function renderHelp(config: PeepTrendMcpConfig): string;
package/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { authStatus } from "./config.js";
2
- export const serverVersion = "0.1.0";
2
+ export const serverVersion = "0.1.1";
3
3
  export function resolveCliAction(args, stdinIsTty) {
4
4
  const firstArg = args[0];
5
5
  if (firstArg === "--stdio") {
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.peeptrend/youtube-gaming-trend-finder",
3
+ "name": "com.peeptrend/youtube-gaming-trend-finder",
4
4
  "title": "PeepTrend: YouTube Gaming Trend Finder",
5
5
  "description": "Find rising Steam games and YouTube content opportunities before the niche gets crowded.",
6
6
  "repository": {
7
7
  "url": "https://github.com/PeepTrend/PeepTrend.MCP",
8
8
  "source": "github"
9
9
  },
10
- "version": "0.1.0",
10
+ "version": "0.1.1",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "peeptrend-mcp",
15
- "version": "0.1.0",
15
+ "version": "0.1.1",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "peeptrend-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "PeepTrend MCP server for finding rising Steam games and YouTube gaming content opportunities before niches get crowded.",
5
- "mcpName": "io.github.peeptrend/youtube-gaming-trend-finder",
5
+ "mcpName": "com.peeptrend/youtube-gaming-trend-finder",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "author": "PeepTrend <support@peeptrend.com>",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "peeptrend-youtube-gaming-trend-finder",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Find rising Steam games and YouTube content opportunities before the niche gets crowded.",
5
5
  "author": {
6
6
  "name": "PeepTrend",
@@ -2,7 +2,7 @@
2
2
  "mcpServers": {
3
3
  "peeptrend": {
4
4
  "command": "npx",
5
- "args": ["-y", "@peeptrend/mcp"],
5
+ "args": ["-y", "peeptrend-mcp"],
6
6
  "env": {
7
7
  "PEEPTREND_API_KEY": "${PEEPTREND_API_KEY}"
8
8
  }