- Home
- MCP servers
- Sequential Thinking
Sequential Thinking
- javascript
1
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"fpardon-upeo-mcp-servers-collection": {
"command": "node",
"args": [
"/path/to/memories-with-lessons-mcp-server/dist/index.js"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_XXXXXXXXXXXXXXXXXXXX"
}
}
}
}You have three MCP servers to extend Claude’s capabilities in Cursor IDE: Sequential Thinking for structured problem solving, Memories with Lessons to capture and reuse learning from errors, and GitHub Integration for repository operations. Each server runs locally as a dedicated MCP endpoint you connect to from Cursor, enabling practical, repeatable workflows.
How to use
Connect each MCP server from your Cursor client to access its capabilities. You will interact with them by sending prompts that target a specific server, then use the response as a structured step in your workflow. Use Sequential Thinking to break problems into manageable steps, Memories with Lessons to retrieve and add lessons learned, and GitHub Integration to manage repositories and files directly from Cursor.
How to install
Prerequisites: you need Node.js installed on your system, Cursor IDE with Claude integration, and a GitHub Personal Access Token if you plan to use the GitHub MCP server.
# 1) Clone the collection
git clone https://github.com/yourusername/mcp-servers-collection.git
cd mcp-servers-collection
# 2) Install and build Sequential Thinking MCP server
cd sequential-thinking
npm install
npm run build
cd ..
# 3) Install and build Memories with Lessons MCP server
cd memories-with-lessons-mcp-server
npm install
npm run build
cd ..
# 4) Install and build GitHub MCP server
cd servers/src/github
npm install
npm run build
cd ../../..
Configuration in Cursor
Add each MCP server as a command-based connection in Cursor. Use the following settings to wire up the servers.
[
{
"name": "sequentialthinking",
"type": "stdio",
"command": "node",
"args": ["/path/to/sequential-thinking/dist/index.js"]
},
{
"name": "memories-with-lessons",
"type": "stdio",
"command": "node",
"args": ["/path/to/memories-with-lessons-mcp-server/dist/index.js"]
},
{
"name": "github",
"type": "stdio",
"command": "env",
"args": ["GITHUB_PERSONAL_ACCESS_TOKEN=your_token", "node", "/path/to/servers/dist/github/index.js"]
}
]
Additional notes and security
The GitHub MCP server requires a GitHub Personal Access Token for authentication. Keep tokens secret and do not share them in logs or screenshots. When configuring the GitHub server, store tokens in a secure vault or environment management system rather than embedding them in plain text.
Available tools
sequential_thinking
Dynamic and reflective problem-solving tool that breaks problems into steps and allows revision as understanding deepens.
memories_with_lessons
Stores and retrieves lessons from errors and their solutions to preserve project knowledge.
github_integration
Allows repository management and file operations against GitHub from Cursor via the MCP server.