get_project
Get a project's domain, brand, industry, and configuration by providing its unique ID.
Instructions
Get a single project by its ID. Returns domain, brand, industry, and config.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project (website) ID |
Implementation Reference
- src/tools/projects.js:26-26 (handler)The handler function for 'get_project' — calls api.get('/projects/${projectId}') to fetch a single project by its ID.
handler: async ({ projectId }) => api.get(`/projects/${projectId}`),