ashutosh-sharechat/mcp_server
If you are the rightful owner of mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The Model Context Protocol (MCP) server facilitates seamless integration with development environments like Cursor and Claude, enabling enhanced tool management and automation.
MCP Integration
This guide will help you set up and integrate the MCP (Model Context Protocol) server with Cursor and Claude.
📋 Prerequisites
- Python installed on your system
- Cursor IDE or Claude Desktop application
⚙️ Setup
Install the required dependency:
pip install fastmcp
🔌 Integration
⚙️ Cursor Integration
-
Open Command Palette
- Press
Cmd + Shift + P(Mac) orCtrl + Shift + P(Windows/Linux)
- Press
-
Add MCP Server
- Search for: "Manage MCP Servers"
- Select "Add MCP Server"
-
Choose Configuration Type
- Select "Local Command" type
-
Configure Server
- Name:
docs_mcp - Command:
python - Args:
/Users/ashutoshgupta/Documents/mcp_server/mcp_server.py
- Name:
-
Verification
- Cursor will auto-detect and list
get_docas an available tool
- Cursor will auto-detect and list
⚙️ Claude Integration
-
Navigate to Settings
- Open Claude → Settings → MCP Servers
-
Add New Server
- Name:
docs_mcp - Command:
python - Args:
/Users/ashutoshgupta/Documents/mcp_server/mcp_server.py
- Name:
-
Available Tools
- Claude will automatically detect and display the following tools:
get_doclist_docs
- Claude will automatically detect and display the following tools:
▶️ Running the Server
To start the MCP server manually:
python mcp_server.py
📝 Notes
- Make sure to update the file path in the Args field to match your actual
mcp_server.pylocation - The server must be running for the tools to be available in Cursor and Claude
- Both integrations use the same server configuration
🔧 Troubleshooting
If the tools are not appearing:
- Verify the file path is correct
- Ensure Python is in your system PATH
- Check that
fastmcpis properly installed - Restart Cursor or Claude after adding the server
📚 Additional Resources
For more information about MCP (Model Context Protocol), visit the official documentation.