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
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM node:lts-alpine

# Create app directory
WORKDIR /app

# Install dependencies
COPY package*.json ./
RUN npm install --production

# Copy source code
COPY . .

# Default command to run the MCP server
CMD ["node", "lib/index.mjs"]
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# MCP Substack Server

[![smithery badge](https://smithery.ai/badge/@michalnaka/mcp-substack)](https://smithery.ai/server/@michalnaka/mcp-substack)

A Model Context Protocol (MCP) server for downloading and parsing Substack posts. Works with Claude.ai desktop app.

## Installation

### Installing via Smithery

To install MCP Substack Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@michalnaka/mcp-substack):

```bash
npx -y @smithery/cli install @michalnaka/mcp-substack --client claude
```

### Manual Installation
1. Install dependencies:
```bash
npm install
Expand Down
13 changes: 13 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

startCommand:
type: stdio
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['lib/index.mjs'] })
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
properties: {}
exampleConfig: {}