@rubyjobs-jp/tanebi-mcp-server 1.0.2 → 1.0.3

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/index.js CHANGED
@@ -5,7 +5,7 @@ import { z } from "zod";
5
5
  // --- Configuration ---
6
6
  const API_KEY = process.env.TANEBI_API_KEY;
7
7
  const API_BASE_URL = process.env.TANEBI_API_BASE_URL?.replace(/\/+$/, "") ||
8
- "http://localhost:3000";
8
+ "https://tanebi.app";
9
9
  if (!API_KEY) {
10
10
  console.error("Error: TANEBI_API_KEY environment variable is required.\n" +
11
11
  "Generate an API key from the Tanebi iOS app settings.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubyjobs-jp/tanebi-mcp-server",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for Tanebi API - list, get, and create ideas",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -9,7 +9,7 @@ import { z } from "zod";
9
9
  const API_KEY = process.env.TANEBI_API_KEY;
10
10
  const API_BASE_URL =
11
11
  process.env.TANEBI_API_BASE_URL?.replace(/\/+$/, "") ||
12
- "http://localhost:3000";
12
+ "https://tanebi.app";
13
13
 
14
14
  if (!API_KEY) {
15
15
  console.error(