📊
Fastmcp LLM Client Neo4j
a fast mcp client with an llm model to interact with neo4j mcp server in a natural language way.
0 installs
Trust: 34 — Low
Data
Ask AI about Fastmcp LLM Client Neo4j
Powered by Claude · Grounded in docs
I know everything about Fastmcp LLM Client Neo4j. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
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
