docs: add Cursor Cloud dev environment setup instructions#1677
Merged
Conversation
Co-authored-by: Daniel Chalef <danielchalef@users.noreply.github.com>
Contributor
|
I have read the CLA Document and I hereby sign the CLA behalf on myself, e-mail: example@example.com or I have read the CLA Document and I hereby sign the CLA behalf of my company, e-mail: example@example.com Signature is valid for 6 months. This bot will be retriggered when the Contributor License Agreement comment has been provided. Posted by the CLA Assistant Lite bot. |
danielchalef
marked this pull request as ready for review
July 23, 2026 18:58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Sets up and validates the full development environment for the Graphiti monorepo (core library, FastAPI REST server, MCP server) in the Cursor Cloud VM, and documents the durable, non-obvious setup/run caveats in
AGENTS.md. The only code change is an added## Cursor Cloud specific instructionssection inAGENTS.md; a startup update script (uv syncacross the three projects) was registered separately.Type of Change
Objective
Make the repo reliably runnable/testable for future cloud agents: install
uv, sync deps for all three projects, and capture the non-obvious gotchas that aren't in the README (e.g.make testrequiring a live Neo4j, pre-existingtest_add_triplet.pyfailures that CI never runs, and a FalkorDB async concurrency limitation).What was set up & verified
Dependencies: installed
uv, ranuv sync --extra dev(root),uv sync --extra dev(server/),uv sync(mcp_server/). Installed Docker and started Neo4j (neo4j:5.26-community) + FalkorDB on the host network (matching CI).graphiti-core(root)make lint— passserver/(FastAPI)make lint— passtest_live_falkordb_int.py -m integration: 2 passed (real OpenAI)uvicorn ... --reloadon :8000; real ingest→search verifiedmcp_server/test_live_falkordb_int.py -m integration: 2 passed (real OpenAI)main.py --transport http --port 8001; MCPinitializeOKNote:
make test(documented command) keeps Neo4j enabled and requires a live Neo4j atbolt://localhost:7687; with it running, 407 passed and the only 11 failures are intests/test_add_triplet.py, a pre-existing mock bug (create_batchunstubbed) that CI never executes.Hello-world (core engine, no API key)
Built entities + episode + a temporal fact edge on Neo4j with a deterministic mock embedder, read them back, and ran hybrid retrieval:
Real live REST API E2E (with provided OPENAI_API_KEY)
Ingested a message via
POST /messages(202), the real LLM extracted temporal facts, andPOST /searchreturned them:graphiti_rest_api_real_ingest_search_demo.mp4
POST /messages 202
POST /search facts 200
Testing
test_add_triplet.py)Breaking Changes
Checklist
make lintpasses)To show artifacts inline, enable in settings.