We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/neupaneprashant/yahoo-finance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
QUICK_START.md•1.22 KiB
# Quick Start - Push to GitHub
## Step 1: Create Repository on GitHub
1. Go to: https://github.com/new
2. Repository name: `yahoo-finance-mcp`
3. Description: "MCP server for Yahoo Finance integration with Claude Desktop"
4. Choose **Public** or **Private**
5. **DO NOT** check "Initialize with README" (we already have one)
6. Click **"Create repository"**
## Step 2: Run the Setup Script
After creating the repo, run:
```bash
cd /Users/prashantneupane/Desktop/yahoo-finance-mcp-main
./setup_github.sh
```
This will:
- Add the GitHub remote
- Push the `main` branch
- Push the `development` branch
## Step 3: Authenticate (if prompted)
If asked for credentials:
- **Username**: `neupaneprashant`
- **Password**: Use a [Personal Access Token](https://github.com/settings/tokens) (not your GitHub password)
## Manual Alternative
If the script doesn't work, run these commands:
```bash
cd /Users/prashantneupane/Desktop/yahoo-finance-mcp-main
# Add remote
git remote add origin https://github.com/neupaneprashant/yahoo-finance-mcp.git
# Push main branch
git push -u origin main
# Push development branch
git push -u origin development
```
## ✅ Done!
Your repository will be at: https://github.com/neupaneprashant/yahoo-finance-mcp