-
-
Notifications
You must be signed in to change notification settings - Fork 64
Description
I can't get the server running on Windows 11 machine
Followed Installation instructions, running
\Projects> git clone https://github.com/cyanheads/atlas-mcp-server.git
Cloning into 'atlas-mcp-server'...
remote: Enumerating objects: 850, done.
remote: Counting objects: 100% (155/155), done.
remote: Compressing objects: 100% (96/96), done.
remote: Total 850 (delta 66), reused 123 (delta 50), pack-reused 695 (from 1)
Receiving objects: 100% (850/850), 647.55 KiB | 6.47 MiB/s, done.
Resolving deltas: 100% (388/388), done.
\Projects> cd atlas-mcp-server
\Projects\atlas-mcp-server> npm install
npm warn deprecated @types/[email protected]: This is a stub types definition. winston provides its own type definitions, so you do not need this installed.
npm warn deprecated @npmcli/[email protected]: This functionality has been moved to @npmcli/fs
npm warn deprecated [email protected]: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated [email protected]: This package is no longer supported.
npm warn deprecated [email protected]: Rimraf versions prior to v4 are no longer supported
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm warn deprecated [email protected]: This package is no longer supported.
npm warn deprecated [email protected]: This package is no longer supported.
[email protected] prepare
npm run build
[email protected] build
tsc && node --eval "import('fs').then(fs => fs.promises.chmod('build/index.js', '755'))"
I edited package.json and changed line 14 to
"build": "tsc",
Then I try again, and don't get any errors
\Projects\atlas-mcp-server> npm install
However, if I run
\Projects\atlas-mcp-server> npm run inspector
I get the console full of the below on loop
New SSE connection
Query parameters: {
transportType: 'stdio',
command: 'dist/index.js',
args: '',
env: '{[Environment Variables]}'
}
Spawned stdio transport
Connected MCP client to backing server transport
Created web app transport
Created web app transport
Set up MCP proxy
and in the WebUI, http://localhost:5173/, I don't get a list of resources like I do with other servers
Any help would be greatly appreciated