Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add korchard333/claude-power-platform-community --skill dataverse-web-apigit clone --depth 1 https://github.com/korchard333/claude-power-platform-communityWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/korchard333/claude-power-platform-community/dataverse-web-api)<a href="https://agentmods.dev/skills/korchard333/claude-power-platform-community/dataverse-web-api"><img src="https://agentmods.dev/badge/skills/korchard333/claude-power-platform-community/dataverse-web-api.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00055 | $0.02903 |
| Opus 5 | $0.00028 | $0.01452 |
| Sonnet 5 | $0.00011 | $0.00581 |
| Haiku 4.5 | $0.00006 | $0.00290 |
Grade A, and why
dataverse-web-api scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
TOKEN=$(curl -s -X POST "https://login.microsoftonline.com/${TENANT_ID}/oauth2/v2.0/token" \ How it starts
The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: Dataverse Web API
When to Use
Trigger when performing CRUD operations, managing metadata (tables, columns, relationships, views, forms), creating Custom APIs, managing solutions, or any direct HTTP interaction with the Dataverse Web API (OData v4.0).
CRITICAL RULES
1. Always Use MSCRM.SolutionUniqueName Header
Every component-creating request MUST include:
MSCRM.SolutionUniqueName: YourSolutionName
WHY: Omitting this header dumps components into the Default Solution — an ALM anti-pattern that makes the component nearly impossible to manage via solution transport. This is the single most common mistake when building via Web API.
2. @odata.type Is Required on All Column/Attribute Creation
Every column creation payload MUST include the correct @odata.type:
{ "@odata.type": "Microsoft.Dynamics.CRM.StringAttributeMetadata", ... }
WHY: Omitting or using the wrong type returns a 400 error. The API cannot infer the column type.
3. Every Table Needs a Primary Name Column
Every custom table MUST have exactly one StringAttributeMetadata with IsPrimaryName: true
included in the table creation payload.
WHY: Without it, the table is created but lookups, views, and forms cannot display a name.
4. Publish After Customization Changes
After creating/modifying forms, views, sitemaps, or business rules, you MUST call:
POST /api/data/v9.2/PublishXml
WHY: Customizations are not visible to users until published. Schema changes (tables, columns) are immediately effective, but UI customizations require publishing.
5. FormXml and FetchXml Must Stay in Sync
Every attribute in a view's layoutxml MUST also appear in the fetchxml.
WHY: Missing attributes in fetchxml cause blank columns in the view.
6. Authentication: Use Azure CLI
az account get-access-token \
--resource "https://[org].crm6.dynamics.com/" \
--tenant "[tenant-id]" \
--query accessToken -o tsv
Do NOT use pac auth token (does not exist as a command).
For CI/CD, use service principal OAuth2 client_credentials flow.
What ships with it
26 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- advanced-column-types.md 11 KB
- auth-and-scripting.md 19 KB
- build-recipe.md 17 KB
- bulk-batch.md 3.5 KB
- business-rules-api.md 12 KB
- component-walkthroughs.md 41 KB
- conditional-operations.md 5.1 KB
- crud-queries.md 7.6 KB
- custom-apis.md 12 KB
- customizations.md 19 KB
- dataverse-design-rules.md 6.7 KB
- environment-variables-api.md 10 KB
- error-handling.md 3.0 KB
- evals/select-enforcement.json 1.2 KB
- evals/web-api-auth.json 669 B
- evals/web-api-permanent-decisions.json 1.3 KB
- evals/web-api-solution-header.json 2.4 KB
- fetchxml-reference.md 11 KB
- files-change-tracking.md 1.5 KB
- formula-columns.md 9.4 KB
- grid-controls.md 8.2 KB
- metadata.md 7.0 KB
- parallelization.md 5.9 KB
- query-optimization.md 5.0 KB
- security-model-api.md 12 KB
- solution-management.md 9.4 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 214 lines · 55 tokens per session scan A 280d8d733d6b
dataverse-web-api is a skill published in the GitHub repository korchard333/claude-power-platform-community (46 stars, last pushed 5mo ago), licensed MIT. It adds 55 tokens to every session and 2,903 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
event-store-design
Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.
convex-explain-app
Explain an existing Convex app — data model + relationships, public vs internal functions, auth/ownership model, components, a request→data flow — read from the schema and function surface. Read-only.
platform-custom-field-generate
Use this skill when users need to create, generate, or validate Salesforce Custom Field metadata. Trigger when users mention custom fields, field types, Roll-up Summary fields, Master-Detail relationships, Lookup relationships, formula fields, picklists, dependent (controlling) picklists, referencing a value set from…
openloomi-api
OpenLoomi ships a local-first HTTP API served from the desktop app (port 3414, fallback 3515). All auth, Memory, AI, RAG, Loop, and Audit data live in a local SQLite database — your data stays on your machine and the OpenLoomi app is the source of truth. The only externally-routed auth path is the Composio OAuth…
nornicdb-grpc
Drive NornicDB over gRPC — the Qdrant-compatible surface (Collections, Points, Snapshots) plus the additive NornicSearch service. Use when ingesting via Qdrant SDKs, migrating from Qdrant, or running hybrid text+vector search from a non-Bolt client. Covers connection, RPC catalog, collection→database mapping…
field-service-sobject-create-configure
Headless 360 REST API deployment step for creating sObject records. Handles describe-based field discovery, required-field derivation, entity-relationship ordering, and composite graph transactions. Use this skill when a designer skill (or a user directly) needs to create sObject records after design confirmation…