Content
GIT instructions to push the local project to Git hub repo for first time
cd path/to/fastmcp_neo_server
### Initialize git (if not already done)
git init
### Add all files (respecting .gitignore)
git add .
### First commit
git commit -m "Initial commit"
### Link to GitHub (replace YOUR_USERNAME with your GitHub username)
git remote add origin https://github.com/YOUR_USERNAME/fastmcp_neo_server.git
### Set the branch to main and push
git branch -M main
git push -u origin main
if you get this error --> ! [rejected] main -> main (fetch first)
------------------------------------------------------------------------
git pull origin main --rebase
git push origin main
if there are merge conficts - do this
-------------------------------------
git add .
git rebase --continue
git push origin main
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.
Filesystem
Node.js MCP Server for filesystem operations with dynamic access control.