├── .env ├── .env.example ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── cursor10x-mcp-1.0.0.tgz ├── index.js ├── migrations └── 001-vector-schema.sql └── package.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/README.md -------------------------------------------------------------------------------- /cursor10x-mcp-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/cursor10x-mcp-1.0.0.tgz -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/index.js -------------------------------------------------------------------------------- /migrations/001-vector-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/migrations/001-vector-schema.sql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiurda/cursor10x-mcp/HEAD/package.json --------------------------------------------------------------------------------