Azure Ai Projects - Microsoft Foundry SDKs

ReviewAudited by ClawScan on May 1, 2026.

Overview

This is a coherent instruction-only Azure SDK reference, but users should notice that its examples use Azure credentials, install packages, manage cloud resources, and can persist or upload data.

This skill appears benign and purpose-aligned as an instruction-only Azure AI Projects SDK reference. Before using it, confirm you are comfortable installing the Azure packages, using your Azure login, and allowing generated code to manage resources in the selected Foundry project. Use least-privilege credentials, avoid printing connection secrets, scope uploads and memory stores carefully, and add approvals around any tool functions that can change real systems.

Findings (7)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the skill’s dependencies will add Azure SDK packages to the user’s Python environment.

Why it was flagged

The skill asks users to install external Python packages. This is expected for an Azure SDK reference, but it is not represented as an install spec and package versions are not pinned.

Skill content
pip install azure-ai-projects azure-identity
Recommendation

Install from trusted package indexes, consider pinning versions in project requirements, and use a virtual environment.

What this means

Generated or run code may be able to create, read, update, or delete Azure AI resources allowed by the active Azure identity.

Why it was flagged

DefaultAzureCredential uses the user’s configured Azure identity chain to access the specified project. This is appropriate for Azure Foundry SDK work, but it means code using these examples can act with the user’s Azure permissions.

Skill content
credential = DefaultAzureCredential()
Recommendation

Use least-privilege Azure roles, confirm the intended subscription/project endpoint, and avoid running examples against production resources unless intended.

What this means

Code following these examples could access credentials for connected services such as Azure OpenAI, Azure AI Search, Bing, storage, or custom API connections.

Why it was flagged

The connection examples show retrieving Azure project connection details with credentials included. This is a legitimate SDK capability, but it can expose service credentials to the running code.

Skill content
include_credentials=True
Recommendation

Only request connection credentials when needed, do not print or log them, and prefer managed identities or least-privilege credentials where possible.

What this means

If a user registers functions that make real changes, the agent may call them during a run without a separate manual step.

Why it was flagged

The examples document auto-execution of registered Python functions by an agent toolset. The shown function is benign and purpose-aligned, but the pattern can become high-impact if connected to real business actions.

Skill content
project_client.agents.enable_auto_function_calls(toolset)
Recommendation

Use auto function calling only with safe, well-scoped functions, and add explicit approval gates for actions that modify data, spend money, or affect external systems.

What this means

Agents created from these examples may execute Python in the provider’s code interpreter environment and generate files.

Why it was flagged

The CodeInterpreterTool capability is explicitly documented and aligned with Azure agent development, but it is still a code-execution tool that users should enable intentionally.

Skill content
Execute Python code in a sandboxed environment.
Recommendation

Enable Code Interpreter only for agents that need it, avoid uploading sensitive files unnecessarily, and review generated outputs before sharing.

What this means

Conversation data or summaries may be stored in an Azure memory store if users implement these examples.

Why it was flagged

The async reference includes persistent memory store updates. This is relevant to Azure AI Projects, but persisted conversation content can be reused later and should be scoped carefully.

Skill content
await client.memory_stores.begin_update_memories(
            name="conversation-memory",
            scope="user123"
Recommendation

Store only necessary content, use clear per-user or per-tenant scopes, and define retention and deletion practices for memory data.

What this means

An agent using an MCP server may send data to that server and invoke the tools it exposes.

Why it was flagged

The tool reference documents connecting an agent to an MCP server. The example scopes allowed tools, but MCP integrations depend on the server’s trust boundary and permissions.

Skill content
mcp_tool = McpTool(
    server_label="my-mcp-server",
    server_url="http://localhost:3000",
    allowed_tools=["search", "calculate"],
)
Recommendation

Use trusted MCP servers, restrict allowed tools, and avoid sending sensitive data to servers whose identity, logs, or access controls are unclear.