Meetjain1512/puch-ai-mcp-server
If you are the rightful owner of puch-ai-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 henry@mcphub.com.
The Puch AI MCP Server is designed to facilitate seamless integration with Puch AI, providing tools for resume management, phone number validation, and web content conversion.
Puch AI MCP Server Setup Instructions
✅ Current Status
Your MCP server is successfully running on http://localhost:8085/mcp
📝 Next Steps to Complete Setup
1. Get Your Application Key
- Use this command with Puch:
/apply <TWITTER/LINKEDIN REPLY URL> - You will receive an application key
2. Update Your Token
- Open
dummy.py - Replace
"your_application_key_here"with your actual application key - Replace
"919189123456"with your actual phone number in format{country_code}{number}- Example:
919876543210for an Indian number (no + symbol)
- Example:
3. Update Your Resume
- Edit
resume.mdwith your actual resume content - The file is already created with a sample resume
4. Make Server Publicly Accessible
For Puch to connect to your server, you need to make it publicly accessible. Options:
Option A: Using ngrok (Recommended for testing)
- Install ngrok:
choco install ngrok(if you have Chocolatey) or download from ngrok.com - Run:
ngrok http 8085 - Copy the public URL (e.g.,
https://abc123.ngrok.io) - Your server URL will be:
https://abc123.ngrok.io/mcp
Option B: Using a Cloud Service
- Deploy to Heroku, Railway, or any cloud platform
- Make sure the port is configurable via environment variables
5. Connect with Puch
Use this command to connect Puch with your server:
/mcp connect <YOUR_PUBLIC_SERVER_URL>/mcp <YOUR_AUTH_TOKEN>
Example:
/mcp connect https://abc123.ngrok.io/mcp your_actual_application_key_here
🔧 Server Features
Your server includes:
- Resume tool: Returns your resume in markdown format
- Validate tool: Returns your phone number for validation
- Fetch tool: Fetches and converts web content to markdown
🚀 Running the Server
To start your server:
python dummy.py
The server will be available at: http://localhost:8085/mcp
📞 Validation
Puch will validate:
- Your auth token (application key)
- Your phone number format:
{country_code}{number}(no + symbol)
🔍 Testing
You can test your server locally by visiting: http://localhost:8085/mcp
Good luck with your Puch AI integration! 🎉