Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM node:lts-slim

WORKDIR /app

# Copy package manifests
COPY package*.json ./

# Install dependencies without running scripts
RUN npm install --ignore-scripts

# Copy remaining source code
COPY . .

# Run build script to ensure entrypoint is executable
RUN npm run build

EXPOSE 3000

CMD [ "npm", "start" ]
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,14 @@ mcp_cursor10x_getMemoryStats({})

## Installation

### Installing via Smithery

To install Cursor10x Memory System for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@aurda012/cursor10x-mcp):

```bash
npx -y @smithery/cli install @aurda012/cursor10x-mcp --client claude
```

### Prerequisites

- Node.js 18 or higher
Expand Down
24 changes: 24 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml

startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- tursoDatabaseUrl
- tursoAuthToken
properties:
tursoDatabaseUrl:
type: string
description: URL for the Turso Database connection
tursoAuthToken:
type: string
description: Authentication token for Turso access
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['index.js'], env: { TURSO_DATABASE_URL: config.tursoDatabaseUrl, TURSO_AUTH_TOKEN: config.tursoAuthToken } })
exampleConfig:
tursoDatabaseUrl: https://your-database-url
tursoAuthToken: your-auth-token