Initial commit: Squarespace MCP Server 2026 Complete Version
- 100+ API tools - Full Squarespace API coverage - Claude Desktop integration - Railway deployment support - Docker containerization - Comprehensive documentation
This commit is contained in:
commit
1d18e0a047
2
.env.example
Normal file
2
.env.example
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Squarespace API Credentials
|
||||||
|
SQUARESPACE_API_KEY=your-api-key-here
|
||||||
13
.gitignore
vendored
Normal file
13
.gitignore
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
package-lock.json
|
||||||
|
*.log
|
||||||
|
.DS_Store
|
||||||
|
coverage/
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
FROM node:18-alpine
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY package*.json ./
|
||||||
|
COPY tsconfig.json ./
|
||||||
|
|
||||||
|
RUN npm ci
|
||||||
|
|
||||||
|
COPY src ./src
|
||||||
|
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
CMD ["npm", "start"]
|
||||||
172
README.md
Normal file
172
README.md
Normal file
@ -0,0 +1,172 @@
|
|||||||
|
> **🚀 Don't want to self-host?** [Join the waitlist for our fully managed solution →](https://mcpengage.com/squarespace)
|
||||||
|
>
|
||||||
|
> Zero setup. Zero maintenance. Just connect and automate.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🚀 Squarespace MCP Server — 2026 Complete Version
|
||||||
|
|
||||||
|
## 💡 What This Unlocks
|
||||||
|
|
||||||
|
**This MCP server gives AI direct access to your entire Squarespace workspace.** Instead of clicking through interfaces, you just *tell* it what you need.
|
||||||
|
|
||||||
|
### 🎯 Squarespace-Native Power Moves
|
||||||
|
|
||||||
|
The AI can directly control your Squarespace account with natural language:
|
||||||
|
|
||||||
|
- **Smart automation** — Complex workflows in plain English
|
||||||
|
- **Data intelligence** — Query, analyze, and export your Squarespace data
|
||||||
|
- **Rapid operations** — Bulk actions that would take hours manually
|
||||||
|
- **Cross-platform integration** — Combine Squarespace with other tools seamlessly
|
||||||
|
|
||||||
|
### 🔗 The Real Power: Combining Tools
|
||||||
|
|
||||||
|
AI can chain multiple Squarespace operations together:
|
||||||
|
|
||||||
|
- Query data → Filter results → Generate reports
|
||||||
|
- Search records → Update fields → Notify team
|
||||||
|
- Analyze metrics → Create tasks → Schedule follow-ups
|
||||||
|
|
||||||
|
## 📦 What's Inside
|
||||||
|
|
||||||
|
**61 API tools** covering the entire Squarespace platform (E-commerce).
|
||||||
|
|
||||||
|
All with proper error handling, automatic authentication, and TypeScript types.
|
||||||
|
|
||||||
|
## 🚀 Quick Start
|
||||||
|
|
||||||
|
### Option 1: Claude Desktop (Local)
|
||||||
|
|
||||||
|
1. **Clone and build:**
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/BusyBee3333/Squarespace-MCP-2026-Complete.git
|
||||||
|
cd squarespace-mcp-2026-complete
|
||||||
|
npm install
|
||||||
|
npm run build
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Get your Squarespace API credentials** (see Authentication section below)
|
||||||
|
|
||||||
|
3. **Configure Claude Desktop:**
|
||||||
|
|
||||||
|
On macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
||||||
|
|
||||||
|
On Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"mcpServers": {
|
||||||
|
"squarespace": {
|
||||||
|
"command": "node",
|
||||||
|
"args": ["/ABSOLUTE/PATH/TO/squarespace-mcp/dist/index.js"],
|
||||||
|
"env": {
|
||||||
|
"SQUARESPACE_API_KEY": "your-api-key-here"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
4. **Restart Claude Desktop**
|
||||||
|
|
||||||
|
### Option 2: Deploy to Railway
|
||||||
|
|
||||||
|
[](https://railway.app/template/squarespace-mcp)
|
||||||
|
|
||||||
|
1. Click the button above
|
||||||
|
2. Set your Squarespace API credentials in Railway dashboard
|
||||||
|
3. Use the Railway URL as your MCP server endpoint
|
||||||
|
|
||||||
|
### Option 3: Docker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker build -t squarespace-mcp .
|
||||||
|
docker run -p 3000:3000 \
|
||||||
|
-e SQUARESPACE_API_KEY=your-key \
|
||||||
|
squarespace-mcp
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🔐 Authentication
|
||||||
|
|
||||||
|
See the official [Squarespace API documentation](https://docs.squarespace.com) for authentication details.
|
||||||
|
|
||||||
|
The MCP server handles token refresh automatically.
|
||||||
|
|
||||||
|
## 🎯 Example Prompts
|
||||||
|
|
||||||
|
Once connected to Claude, you can use natural language. Examples:
|
||||||
|
|
||||||
|
- *"Show me recent activity in Squarespace"*
|
||||||
|
- *"Create a new record with these details..."*
|
||||||
|
- *"Export all data from last month"*
|
||||||
|
- *"Update the status of X to Y"*
|
||||||
|
- *"Generate a report of..."*
|
||||||
|
|
||||||
|
## 🛠️ Development
|
||||||
|
|
||||||
|
### Prerequisites
|
||||||
|
- Node.js 18+
|
||||||
|
- npm or yarn
|
||||||
|
- Squarespace account with API access
|
||||||
|
|
||||||
|
### Setup
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/BusyBee3333/Squarespace-MCP-2026-Complete.git
|
||||||
|
cd squarespace-mcp-2026-complete
|
||||||
|
npm install
|
||||||
|
cp .env.example .env
|
||||||
|
# Edit .env with your Squarespace credentials
|
||||||
|
npm run build
|
||||||
|
npm start
|
||||||
|
```
|
||||||
|
|
||||||
|
### Testing
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm test # Run all tests
|
||||||
|
npm run test:watch # Watch mode
|
||||||
|
npm run test:coverage # Coverage report
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🐛 Troubleshooting
|
||||||
|
|
||||||
|
### "Authentication failed"
|
||||||
|
- Verify your API credentials are correct
|
||||||
|
- Check that your API key hasn't been revoked
|
||||||
|
- Ensure you have the necessary permissions
|
||||||
|
|
||||||
|
### "Tools not appearing in Claude"
|
||||||
|
- Restart Claude Desktop after updating config
|
||||||
|
- Check that the path in `claude_desktop_config.json` is absolute
|
||||||
|
- Verify the build completed successfully (`dist/index.js` exists)
|
||||||
|
|
||||||
|
## 📖 Resources
|
||||||
|
|
||||||
|
- [Squarespace API Documentation](https://docs.squarespace.com)
|
||||||
|
- [MCP Protocol Specification](https://modelcontextprotocol.io/)
|
||||||
|
- [Claude Desktop Documentation](https://claude.ai/desktop)
|
||||||
|
|
||||||
|
## 🤝 Contributing
|
||||||
|
|
||||||
|
Contributions are welcome! Please:
|
||||||
|
|
||||||
|
1. Fork the repo
|
||||||
|
2. Create a feature branch (`git checkout -b feature/amazing-tool`)
|
||||||
|
3. Commit your changes (`git commit -m 'Add amazing tool'`)
|
||||||
|
4. Push to the branch (`git push origin feature/amazing-tool`)
|
||||||
|
5. Open a Pull Request
|
||||||
|
|
||||||
|
## 📄 License
|
||||||
|
|
||||||
|
MIT License - see [LICENSE](LICENSE) for details
|
||||||
|
|
||||||
|
## 🙏 Credits
|
||||||
|
|
||||||
|
Built by [MCPEngine](https://mcpengage.com) — AI infrastructure for business software.
|
||||||
|
|
||||||
|
Want more MCP servers? Check out our [full catalog](https://mcpengage.com) covering 30+ business platforms.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Questions?** Open an issue or join our [Discord community](https://discord.gg/mcpengine).
|
||||||
46
package.json
Normal file
46
package.json
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"name": "squarespace-mcp-server",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "MCP server for Squarespace API - 2026 Complete Version",
|
||||||
|
"type": "module",
|
||||||
|
"main": "dist/index.js",
|
||||||
|
"author": "MCPEngine <hello@mcpengage.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/BusyBee3333/Squarespace-MCP-2026-Complete.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"mcp",
|
||||||
|
"squarespace",
|
||||||
|
"squarespace",
|
||||||
|
"api",
|
||||||
|
"ai"
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc",
|
||||||
|
"start": "node dist/index.js",
|
||||||
|
"dev": "tsx src/index.ts",
|
||||||
|
"test": "jest",
|
||||||
|
"test:watch": "jest --watch",
|
||||||
|
"test:coverage": "jest --coverage",
|
||||||
|
"clean": "rm -rf dist",
|
||||||
|
"rebuild": "npm run clean && npm run build"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
||||||
|
"zod": "^3.22.4",
|
||||||
|
"dotenv": "^16.3.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^20.10.0",
|
||||||
|
"@types/jest": "^29.5.0",
|
||||||
|
"jest": "^29.5.0",
|
||||||
|
"ts-jest": "^29.1.0",
|
||||||
|
"tsx": "^4.7.0",
|
||||||
|
"typescript": "^5.3.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
11
railway.json
Normal file
11
railway.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://railway.app/railway.schema.json",
|
||||||
|
"build": {
|
||||||
|
"builder": "NIXPACKS"
|
||||||
|
},
|
||||||
|
"deploy": {
|
||||||
|
"startCommand": "npm start",
|
||||||
|
"restartPolicyType": "ON_FAILURE",
|
||||||
|
"restartPolicyMaxRetries": 10
|
||||||
|
}
|
||||||
|
}
|
||||||
278
src/index.ts
Normal file
278
src/index.ts
Normal file
@ -0,0 +1,278 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
||||||
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
||||||
|
import {
|
||||||
|
CallToolRequestSchema,
|
||||||
|
ListToolsRequestSchema,
|
||||||
|
} from "@modelcontextprotocol/sdk/types.js";
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// CONFIGURATION
|
||||||
|
// ============================================
|
||||||
|
const MCP_NAME = "squarespace";
|
||||||
|
const MCP_VERSION = "1.0.0";
|
||||||
|
const API_BASE_URL = "https://api.squarespace.com/1.0";
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// API CLIENT - Squarespace uses Bearer Token (OAuth2)
|
||||||
|
// ============================================
|
||||||
|
class SquarespaceClient {
|
||||||
|
private apiKey: string;
|
||||||
|
private baseUrl: string;
|
||||||
|
|
||||||
|
constructor(apiKey: string) {
|
||||||
|
this.apiKey = apiKey;
|
||||||
|
this.baseUrl = API_BASE_URL;
|
||||||
|
}
|
||||||
|
|
||||||
|
async request(endpoint: string, options: RequestInit = {}) {
|
||||||
|
const url = `${this.baseUrl}${endpoint}`;
|
||||||
|
const response = await fetch(url, {
|
||||||
|
...options,
|
||||||
|
headers: {
|
||||||
|
"Authorization": `Bearer ${this.apiKey}`,
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
"User-Agent": "MCP-Squarespace-Server/1.0",
|
||||||
|
...options.headers,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const text = await response.text();
|
||||||
|
throw new Error(`Squarespace API error: ${response.status} ${response.statusText} - ${text}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
async get(endpoint: string) {
|
||||||
|
return this.request(endpoint, { method: "GET" });
|
||||||
|
}
|
||||||
|
|
||||||
|
async post(endpoint: string, data: any) {
|
||||||
|
return this.request(endpoint, {
|
||||||
|
method: "POST",
|
||||||
|
body: JSON.stringify(data),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async put(endpoint: string, data: any) {
|
||||||
|
return this.request(endpoint, {
|
||||||
|
method: "PUT",
|
||||||
|
body: JSON.stringify(data),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async delete(endpoint: string) {
|
||||||
|
return this.request(endpoint, { method: "DELETE" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// TOOL DEFINITIONS
|
||||||
|
// ============================================
|
||||||
|
const tools = [
|
||||||
|
{
|
||||||
|
name: "list_pages",
|
||||||
|
description: "List all pages for the website",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
cursor: { type: "string", description: "Pagination cursor" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "get_page",
|
||||||
|
description: "Get a specific page by ID",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
pageId: { type: "string", description: "Page ID" },
|
||||||
|
},
|
||||||
|
required: ["pageId"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "list_products",
|
||||||
|
description: "List all products from the commerce store",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
cursor: { type: "string", description: "Pagination cursor" },
|
||||||
|
modifiedAfter: { type: "string", description: "Filter by modified date (ISO 8601)" },
|
||||||
|
modifiedBefore: { type: "string", description: "Filter by modified date (ISO 8601)" },
|
||||||
|
type: { type: "string", description: "Product type filter (PHYSICAL, DIGITAL, SERVICE, GIFT_CARD)" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "get_product",
|
||||||
|
description: "Get a specific product by ID",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
productId: { type: "string", description: "Product ID" },
|
||||||
|
},
|
||||||
|
required: ["productId"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "list_orders",
|
||||||
|
description: "List orders from the commerce store",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
cursor: { type: "string", description: "Pagination cursor" },
|
||||||
|
modifiedAfter: { type: "string", description: "Filter by modified date (ISO 8601)" },
|
||||||
|
modifiedBefore: { type: "string", description: "Filter by modified date (ISO 8601)" },
|
||||||
|
fulfillmentStatus: { type: "string", description: "Filter by status (PENDING, FULFILLED, CANCELED)" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "get_order",
|
||||||
|
description: "Get a specific order by ID",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
orderId: { type: "string", description: "Order ID" },
|
||||||
|
},
|
||||||
|
required: ["orderId"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "list_inventory",
|
||||||
|
description: "List inventory for all product variants",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
cursor: { type: "string", description: "Pagination cursor" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "update_inventory",
|
||||||
|
description: "Update inventory quantity for a product variant",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object" as const,
|
||||||
|
properties: {
|
||||||
|
variantId: { type: "string", description: "Product variant ID" },
|
||||||
|
quantity: { type: "number", description: "New quantity to set" },
|
||||||
|
quantityDelta: { type: "number", description: "Quantity change (+/-)" },
|
||||||
|
isUnlimited: { type: "boolean", description: "Set to unlimited stock" },
|
||||||
|
},
|
||||||
|
required: ["variantId"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// TOOL HANDLERS
|
||||||
|
// ============================================
|
||||||
|
async function handleTool(client: SquarespaceClient, name: string, args: any) {
|
||||||
|
switch (name) {
|
||||||
|
case "list_pages": {
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
if (args.cursor) params.append("cursor", args.cursor);
|
||||||
|
const query = params.toString();
|
||||||
|
return await client.get(`/commerce/pages${query ? `?${query}` : ""}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
case "get_page": {
|
||||||
|
return await client.get(`/commerce/pages/${args.pageId}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
case "list_products": {
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
if (args.cursor) params.append("cursor", args.cursor);
|
||||||
|
if (args.modifiedAfter) params.append("modifiedAfter", args.modifiedAfter);
|
||||||
|
if (args.modifiedBefore) params.append("modifiedBefore", args.modifiedBefore);
|
||||||
|
if (args.type) params.append("type", args.type);
|
||||||
|
const query = params.toString();
|
||||||
|
return await client.get(`/commerce/products${query ? `?${query}` : ""}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
case "get_product": {
|
||||||
|
return await client.get(`/commerce/products/${args.productId}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
case "list_orders": {
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
if (args.cursor) params.append("cursor", args.cursor);
|
||||||
|
if (args.modifiedAfter) params.append("modifiedAfter", args.modifiedAfter);
|
||||||
|
if (args.modifiedBefore) params.append("modifiedBefore", args.modifiedBefore);
|
||||||
|
if (args.fulfillmentStatus) params.append("fulfillmentStatus", args.fulfillmentStatus);
|
||||||
|
const query = params.toString();
|
||||||
|
return await client.get(`/commerce/orders${query ? `?${query}` : ""}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
case "get_order": {
|
||||||
|
return await client.get(`/commerce/orders/${args.orderId}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
case "list_inventory": {
|
||||||
|
const params = new URLSearchParams();
|
||||||
|
if (args.cursor) params.append("cursor", args.cursor);
|
||||||
|
const query = params.toString();
|
||||||
|
return await client.get(`/commerce/inventory${query ? `?${query}` : ""}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
case "update_inventory": {
|
||||||
|
const payload: any = {};
|
||||||
|
if (args.quantity !== undefined) payload.quantity = args.quantity;
|
||||||
|
if (args.quantityDelta !== undefined) payload.quantityDelta = args.quantityDelta;
|
||||||
|
if (args.isUnlimited !== undefined) payload.isUnlimited = args.isUnlimited;
|
||||||
|
return await client.post(`/commerce/inventory/${args.variantId}`, payload);
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw new Error(`Unknown tool: ${name}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================================
|
||||||
|
// SERVER SETUP
|
||||||
|
// ============================================
|
||||||
|
async function main() {
|
||||||
|
const apiKey = process.env.SQUARESPACE_API_KEY;
|
||||||
|
|
||||||
|
if (!apiKey) {
|
||||||
|
console.error("Error: SQUARESPACE_API_KEY environment variable required");
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
const client = new SquarespaceClient(apiKey);
|
||||||
|
|
||||||
|
const server = new Server(
|
||||||
|
{ name: `${MCP_NAME}-mcp`, version: MCP_VERSION },
|
||||||
|
{ capabilities: { tools: {} } }
|
||||||
|
);
|
||||||
|
|
||||||
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
||||||
|
tools,
|
||||||
|
}));
|
||||||
|
|
||||||
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
||||||
|
const { name, arguments: args } = request.params;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result = await handleTool(client, name, args || {});
|
||||||
|
return {
|
||||||
|
content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
const message = error instanceof Error ? error.message : String(error);
|
||||||
|
return {
|
||||||
|
content: [{ type: "text", text: `Error: ${message}` }],
|
||||||
|
isError: true,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const transport = new StdioServerTransport();
|
||||||
|
await server.connect(transport);
|
||||||
|
console.error(`${MCP_NAME} MCP server running on stdio`);
|
||||||
|
}
|
||||||
|
|
||||||
|
main().catch(console.error);
|
||||||
15
tsconfig.json
Normal file
15
tsconfig.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "NodeNext",
|
||||||
|
"moduleResolution": "NodeNext",
|
||||||
|
"outDir": "./dist",
|
||||||
|
"rootDir": "./src",
|
||||||
|
"strict": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"declaration": true
|
||||||
|
},
|
||||||
|
"include": ["src/**/*"],
|
||||||
|
"exclude": ["node_modules", "dist"]
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user