├── .gitignore ├── .npmignore ├── README.md ├── claude_desktop_config.example.json ├── package.json ├── src ├── client.ts ├── index.ts └── types.ts ├── suppr_api.json ├── tsconfig.json └── tsup.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/README.md -------------------------------------------------------------------------------- /claude_desktop_config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/claude_desktop_config.example.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/package.json -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/src/types.ts -------------------------------------------------------------------------------- /suppr_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/suppr_api.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WildDataX/suppr-mcp/HEAD/tsup.config.ts --------------------------------------------------------------------------------