Skip to main content
Glama

Neo4j MCP Server

range.js994 B
import { Observable } from '../Observable'; import { EMPTY } from './empty'; export function range(start, count, scheduler) { if (count == null) { count = start; start = 0; } if (count <= 0) { return EMPTY; } const end = count + start; return new Observable(scheduler ? (subscriber) => { let n = start; return scheduler.schedule(function () { if (n < end) { subscriber.next(n++); this.schedule(); } else { subscriber.complete(); } }); } : (subscriber) => { let n = start; while (n < end && !subscriber.closed) { subscriber.next(n++); } subscriber.complete(); }); } //# sourceMappingURL=range.js.map

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Tobarrientos2/neo4j-mcpserver'

If you have feedback or need assistance with the MCP directory API, please join our Discord server