get_project_settings
Retrieve project settings for the current or proposed directory, including path, type, and metadata. Ensures configuration accuracy for agile workflows in MCP Agile Flow.
Instructions
Get the project settings for the current working directory or a proposed path.
Returns configuration settings including project path, type, and metadata.
If proposed_path is not provided or invalid, uses the current directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
proposed_path | No |
Input Schema (JSON Schema)
{
"properties": {
"proposed_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Proposed Path"
}
},
"title": "get_project_settingsArguments",
"type": "object"
}