campertunity-mcp-server 0.0.6 → 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 +3 -2
- package/dist/campertunity/client.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# MCP Server for Campertunity
|
|
2
2
|
|
|
3
|
+
[](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
|
|
@@ -18,7 +20,6 @@ This server implements the Model Context Protocol (MCP) for Campertunity, provid
|
|
|
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://
|
|
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