Overview
MCP (Model Calling Protocol) is a collection of servers designed to enhance the capabilities of Claude Desktop by providing additional functionalities.
To use MCP, clone the repository, set up the required servers, and configure Claude Desktop to recognize these servers.
- Real-time weather information service - LinkedIn profile scraping and analysis - Easy setup and configuration for Claude Desktop
- Getting current weather updates for any location.
- Extracting and summarizing professional profiles from LinkedIn.
- Enhancing Claude Desktop with additional data processing capabilities.
Add to your AI client
Use these steps to connect Local Claude MCP Servers Collection in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-saptechengineer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-saptechengineer"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-saptechengineer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-saptechengineer"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-saptechengineer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-saptechengineer"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-saptechengineer": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-saptechengineer"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-saptechengineer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-saptechengineer"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-saptechengineer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-saptechengineer"
]
}
}
}FAQ
What is required to run MCP?
You need Python 3.9+, Claude Desktop, and basic command line knowledge.
How do I install the servers?
Follow the installation instructions in the README to set up each server.
Can I contribute to the project?
Yes! Contributions are welcome, and you can follow the guidelines in the repository.