You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`azure-functions` Python package version **2.2.0b2** or greater (pre-release)
26
+
27
+
> **Important:** This project uses the **preview extension bundle** (`Microsoft.Azure.Functions.ExtensionBundle.Preview`) configured in `host.json`. The `azure-functions` Python package must also be version `2.2.0b2+` to expose the `mcp_prompt_trigger` decorator.
27
28
28
29
## Run locally
29
30
30
-
### 1. Build the MCP extension
31
+
### 1. Start Azurite
31
32
32
-
From this directory (`src/FunctionsMcpPrompts`), build the MCP extension:
33
+
An Azure Storage Emulator is needed for the function app to run locally:
33
34
34
35
```shell
35
-
dotnet restore extensions.csproj
36
-
dotnet build extensions.csproj
36
+
docker run -p 10000:10000 -p 10001:10001 -p 10002:10002 \
37
+
mcr.microsoft.com/azure-storage/azurite
37
38
```
38
39
40
+
> **Note**: If using the Azurite VS Code extension, run `Azurite: Start` from the command palette.
41
+
39
42
### 2. Install Dependencies
40
43
41
44
Create and activate a virtual environment, then install dependencies:
0 commit comments