Last active
June 13, 2025 17:58
-
-
Save delorenj/7ab41a002dd93c1449e2b372d6bee25c to your computer and use it in GitHub Desktop.
Curi MCP Servers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mcpServers": { | |
"ClickUp": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@taazkareem/clickup-mcp-server@latest" | |
], | |
"env": { | |
"CLICKUP_API_KEY": "your-api-key", | |
"CLICKUP_TEAM_ID": "your-team-id", | |
"DOCUMENT_SUPPORT": "true" | |
} | |
}, | |
"langfuse-prompts": { | |
"command": "node", | |
"args": [ | |
"/home/peteturok/code/langfuse-mcp/build/index.js" | |
], | |
"env": { | |
"LANGFUSE_PUBLIC_KEY": "your-public-key", | |
"LANGFUSE_SECRET_KEY": "your-secret-key", | |
"LANGFUSE_BASEURL": "https://curi.langfuse.whatever" | |
} | |
}, | |
"langfuse-debug": { | |
"command": [ | |
"uvx" | |
], | |
"args": [ | |
"langfuse-mcp" | |
], | |
"type": "stdio", | |
"env": { | |
"LANGFUSE_PUBLIC_KEY": "YOUR_KEY", | |
"LANGFUSE_SECRET_KEY": "YOUR_SECRET", | |
"LANGFUSE_HOST": "https://cloud.langfuse.com" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks Jarad! now what...hmm.