Skip to content

Latest commit

 

History

History

admin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Admin functionality

Local setup

  1. Run yarn install to install the dependencies

  2. Run yarn build to build the library

  3. Debug with the MCP inspector

    1. Run CLIENT_PORT=9001 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node dist/index.js
    2. Open the page for the inspector
    3. Fill out any needed environment variables and click 'Connect'
  4. To use this with Claude Desktop, add the following to your claude_desktop_config.json:

    {
      "mcpServers": {
        "dart": {
          "command": "node",
          "args": ["<PATH_TO_WORKSPACE>/dart-mcp-server/dist/index.js"],
          "env": {
            "DART_TOKEN": "dsa_...",
            "DART_HOST": "http://localhost:5173"
          }
        }
      }
    }

Deploy

  1. Commit and push all local changes to GitHub
  2. Run npm login if needed
  3. Run yarn release and follow the prompts (usually they are all a yes), confirming each step by pressing enter