workiva-mcp
This server provides MCP tools for interacting with the Workiva platform, enhanced by a self-building knowledge base (KB) that automatically surfaces fixes for failed API calls.
Knowledge Base (KB) — Search, list, get, and add entries to a growing database of API quirks and known issues. Failed requests include relevant KB entries in error messages.
Profiles — List and switch between saved Workiva credential profiles for different environments.
Wdata (Read) — List tables, get schemas, run ad‑hoc Trino SQL (with qualified table references), execute saved queries, and list connections.
Wdata (Write) (WORKIVA_ALLOW_WRITES=1 required) — Create tables, upload CSV/TSV/JSON files, import data, and refresh connections.
Graph — List available record types, fetch graph records (type filter mandatory), and apply edits (create/update/delete records and relationships).
Spreadsheets — List sheets within a spreadsheet, generate direct UI URLs, and update sheets via structured operations (edit ranges/cells, apply formats, resize columns).
Escape Hatch — workiva_request enables direct HTTP calls to any Platform, Wdata, or Chains API endpoint for unsupported operations (GET always allowed; other methods require write permissions).
Write Safety — All write tools are disabled by default to prevent accidental mutations; they must be explicitly enabled.
Draft KB Contributions — Record new quirks locally via kb_add; drafts are immediately searchable and can later be promoted to the shared KB through a formal process.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@workiva-mcplist all Wdata connections"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
workiva-mcp
An MCP server for the Workiva platform that pairs API tools with an accumulating knowledge base of confirmed API behaviour — the quirks, dead ends, and undocumented requirements that otherwise cost every agent (and every teammate) the same hour of rediscovery.
The mechanism that makes the pairing matter: failing API calls
automatically attach the matching KB entry. An agent that hits
400 "unable to match urn" gets the fix inside the error message itself,
without ever knowing the KB exists.
Status: v0.1.0 — the full planned surface is live: 22 tools across the KB, credential profiles, Wdata, Graph and Spreadsheets, plus the escape hatch and the drafts → PR contribution loop.
Install
claude mcp add --scope user workiva -- uvx --from git+https://github.com/woof-xyz/workiva-mcp@v0.1.0 workiva-mcp--scope user registers the server once for your account, available in
every directory. Without it, claude mcp add defaults to local scope —
private to you in the one directory you ran it from, which is why the server
seems to vanish in every other project. The third option, --scope project,
writes a .mcp.json into the repo so teammates get the server on clone.
Add -e WORKIVA_ALLOW_WRITES=1 before -- to enable write tools (see
Write safety). Pin a tag — uv caches git resolutions, so an unpinned
main silently freezes at whatever commit it first resolved. Upgrading =
re-add with the new tag. Credentials go in ~/.workiva/credentials
(Credentials below); the KB tools work with no credentials at all.
Related MCP server: cocoon
Tools
Group | Tools |
KB |
|
Profiles |
|
Wdata (read) |
|
Wdata (write) |
|
Graph |
|
Spreadsheets |
|
Anything else |
|
Every API tool runs through the auto-attach mechanism: failures come back wearing the matching KB entries, resolution included.
What the KB knows
25 seeded entries, all confirmed against the live API in July 2026: 4 blockers (no API path exists — e.g. connections cannot be created programmatically), 12 gotchas (the obvious approach fails first — e.g. Wdata SQL cannot reference tables by name), and 9 nuances. Entries are dated, version-pinned, and carry the literal error strings they match.
Layout
workiva-mcp/
src/workiva_mcp/
server.py # MCP tools
kb.py # KB toolchain: parse, validate, build index, search
client.py # Workiva API client: credentials, token refresh, three hosts
promote.py # KB drafts -> branch -> PR (planned)
kb/ # the knowledge base: entries/*.md + SCHEMA.md + index.json
tests/
.githooks/ # pre-push gate: ruff + pytest + kb checkDevelopment
One-time setup after cloning — activate the pre-push gate:
git config core.hooksPath .githooksEvery push then runs ruff, the tests, and the KB check first
(git push --no-verify bypasses in an emergency).
uv run workiva-mcp # boots the stdio server
uv run pytest # tests
uv run ruff check . # lint
uv run python -m workiva_mcp.kb check # validate entries + index currency
uv run python -m workiva_mcp.kb build # rebuild kb/index.json after editing entrieskb/index.json is generated — never edit it by hand; edit kb/entries/*.md
and rebuild.
Register with Claude Code from a clone:
claude mcp add --scope user workiva -- uv run --directory <path-to-clone> workiva-mcp(--scope user makes the dev server available everywhere; drop it to keep
it confined to the directory you register it from.)
Credentials
# ~/.workiva/credentials (chmod 600)
[settings]
default_profile = sandbox
[default]
client_id = ...
client_secret = ...
[sandbox]
client_id = ...
client_secret = ...
# optional per-profile endpoint overrides:
# token_url / platform_base / wdata_base / chains_baseThe file is re-read at call time, so edits — rotating a secret, switching
default_profile — take effect on the next call without restarting the
server. With no file at all, WORKIVA_CLIENT_ID / WORKIVA_CLIENT_SECRET
serve the default profile. WORKIVA_CREDENTIALS_FILE overrides the file
location.
Switching profiles is a tool call, not a file edit: profile_list
shows every profile with the active one marked, and profile_use("sandbox")
makes all subsequent API calls authenticate as that profile — a fresh token
is fetched on the next call. The switch is session-scoped: nothing is
written to the file, and a restart returns to the configured default
(profile_use("") does the same without restarting). Precedence:
profile_use override > WORKIVA_PROFILE > [settings] default_profile >
[default].
Write safety
The server is read-only by default: tools marked WRITE (create table,
upload/import, connection refresh, …) refuse with an explanatory message and
touch nothing. Enable writes with WORKIVA_ALLOW_WRITES=1 in the server's
environment, or allow_writes = true under [settings] in
~/.workiva/credentials — the file is re-read at call time, so flipping it
takes effect immediately, and an explicit env value (even 0) always wins.
Read-only means no user-visible workspace mutations: wdata_run_sql's
internal temp-query mechanics stay allowed.
Capturing new knowledge
kb_add writes drafts to ~/.workiva/kb/drafts/ (override with
WORKIVA_KB_DRAFTS) — local, instant, no review, never part of the package.
Search reads bundled entries and your drafts, so a quirk you hit today
helps you again tomorrow, before any review happens. Drafts carry
confidence: reported and pass the same schema linter as real entries.
Promotion into the shared KB is a deliberate human act:
uv run workiva-kb list # what's waiting locally
uv run workiva-kb promote <draft-id> ... # re-stamp as confirmed, branch, commit, open PR(--no-pr for branch+commit only, --keep-drafts to leave local copies,
--confidence to override the confirmed re-stamp.) Workspace-specific
findings simply never get promoted.
Roadmap
Scaffold: package, entry point, empty stdio server
KB data vendored: 25 entries, schema, CC-BY-4.0 license
KB toolchain: parse + validate + index build + weighted search, tests, pre-push gate
KB tools:
kb_search/kb_list/kb_get, KB packaged into the wheelLocal drafts overlay +
kb_addWorkiva client foundation: credential profiles in
~/.workiva/credentials, token lifecycle, three-host transportAuto-hint mechanism + read-only Wdata tools
SQL execution, saved queries, connections listing
Write gate (
WORKIVA_ALLOW_WRITES/allow_writes) + modifying Wdata tools: create table, upload → import → poll, connection refreshGraph + Spreadsheets tools (writes gated)
Escape hatch (platform / wdata / chains)
promoteCLI: drafts → PR (workiva-kb)v0.1.0tag,uvxinstall verifiedCredential profile switching:
profile_list/profile_useNOTICE file — deferred until copyright ownership is settled (see the plan's open item); Apache-2.0 is complete without it
License
Code: Apache-2.0 (see LICENSE). KB entries under kb/, once landed:
CC-BY-4.0.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceThis MCP server enables intelligent API testing automation by combining RAG knowledge retrieval with tool execution capabilities. It allows QA engineers to perform natural language-driven API testing with contextual knowledge support.Last updated
- Alicense-qualityBmaintenanceAn MCP server that provides a single tool for discovering, auto-installing, sandboxing, and calling any API from the printing-press corpus. It enables agents to seamlessly find and execute API operations without per-API setup.Last updatedMIT
- Alicense-qualityBmaintenanceAn MCP server providing tools for read-only SQL queries, REST API calls, sandboxed Python execution, and resource lifecycle management, enabling multi-step research and data tasks.Last updatedMIT
- AlicenseAqualityCmaintenanceAn MCP server that automatically discovers API endpoints from any codebase, generates and runs tests, and produces per-role QA audit reports in PDF and XLSX.Last updated10753MIT
Related MCP Connectors
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/woof-xyz/workiva-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server