campertunity-mcp-server 0.0.5 → 0.0.7

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/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # MCP Server for Campertunity
2
2
 
3
+ [![smithery badge](https://smithery.ai/badge/@campertunity/mcp-server)](https://smithery.ai/server/@campertunity/mcp-server)
4
+
3
5
  This server implements the Model Context Protocol (MCP) for Campertunity, providing AI models with tools to interact with camping and outdoor recreation data.
4
6
 
5
7
  ## MCP Client Config
@@ -11,14 +13,13 @@ This server implements the Model Context Protocol (MCP) for Campertunity, provid
11
13
  "command": "npx",
12
14
  "args": ["-y", "campertunity-mcp-server@latest"],
13
15
  "env": {
14
- "CAMPERTUNITY_API_KEY": "your_api_key_here",
16
+ "CAMPERTUNITY_API_KEY": "your_api_key_here"
15
17
  }
16
18
  }
17
19
  }
18
20
  }
19
21
  ```
20
22
 
21
-
22
23
  ## Setup
23
24
 
24
25
  1. Get your API key from [https://campertunity.com/mcp](https://campertunity.com/mcp)
@@ -128,4 +129,4 @@ The data provided through these tools is collected from multiple sources and enh
128
129
  - Do not modify the data
129
130
  - Always use real-time data through the server
130
131
 
131
- For more information, visit [campertunity.com](https://campertunity.com)
132
+ For more information, visit [campertunity.com](https://campertunity.com)
@@ -1,4 +1,4 @@
1
- const CAMPERTUNITY_API_URL = process.env.CAMPERTUNITY_API_URL || "https://us-central1-my-project-1517611279378.cloudfunctions.net/public/api";
1
+ const CAMPERTUNITY_API_URL = process.env.CAMPERTUNITY_API_URL || "https://campertunity.com/public/api";
2
2
  const CAMPERTUNITY_API_KEY = process.env.CAMPERTUNITY_API_KEY;
3
3
  if (!CAMPERTUNITY_API_KEY) {
4
4
  throw new Error("CAMPERTUNITY_API_KEY environment variable is required");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "campertunity-mcp-server",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "MCP Server for Campertunity - A Model Context Protocol server for interacting with camping and outdoor recreation data",
5
5
  "type": "module",
6
6
  "bin": {