├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── mcp_server.ts └── update_claude_config.ts └── tsconfig.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mcp_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/src/mcp_server.ts -------------------------------------------------------------------------------- /src/update_claude_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/src/update_claude_config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runablehq/mobile-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------