This is a beta build tutorial, so its structure, implementation steps, and sample code may continue to change.
Configuration
Configure MCP Server
After setting up the project, we need to configure the MCP server.
Steps
Open the
.cursor/mcp.jsonfile in your projectAdd the following configuration:
{
"mcpServers": {
"about-me": {
"command": "uv",
"args": [
"--directory",
"/Users/your_username/Code/Playground/build_mcp_for_cursor/project",
"run",
"main.py"
]
}
}
}- Save the file and restart Cursor
Verification
To verify the configuration is correct:
- Open Cursor
- Check the MCP server status in settings
- You should see the “about-me” server listed as connected
Next Steps
Now that the MCP server is configured, you can start using it in your projects.