Add Server-Sent Events (SSE) API documentation and README updates

- Created comprehensive SSE API documentation in `docs/SSE_API.md`
- Updated README.md with new features section highlighting SSE capabilities
- Added `.cursornotes` file for SSE subscription flow
- Provided detailed examples and usage guidelines for SSE integration
- Documented event types, authentication, and best practices for real-time updates
This commit is contained in:
jango-blockchained
2025-01-30 12:21:25 +01:00
parent 64e619252c
commit e1e0a45acc
3 changed files with 411 additions and 0 deletions

14
.cursornotes Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "MCP SSE Subscribe Flow",
"nodes": [
{
"id": "sse_subscribe",
"type": "http request",
"method": "GET",
"url": "http://localhost:3000/sse",
"ret": "txt",
"persist": true,
"name": "SSE Subscription"
}
]
}