Skip to content

Commit 5d39c54

Browse files
authored
Adding MCP servers
1 parent 91ce94f commit 5d39c54

21 files changed

+4214
-4
lines changed

modelcontextprotocol/.dockerignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
dist
3+
*.md
4+
*.png
5+
*.log
6+
*.env

modelcontextprotocol/.env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Pipedream OAuth credentials
2+
PIPEDREAM_CLIENT_ID=your_client_id
3+
PIPEDREAM_CLIENT_SECRET=your_client_secret
4+
PIPEDREAM_PROJECT_ID=your_project_id
5+
PIPEDREAM_PROJECT_ENVIRONMENT=development
6+
PIPEDREAM_WEBHOOK_URI=https://your-webhook.m.pipedream.net
7+
8+
# Optional: Default app to use (defaults to "slack")
9+
APP=slack
10+
11+
# Optional: Port for the SSE server (defaults to 3010)
12+
PORT=3010

modelcontextprotocol/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.env*
3+
!.env.example
4+
dist

0 commit comments

Comments
 (0)