MCP server for Fluent (ServiceNow SDK)
If you already use Fluent MCP, the fluent mcp mcp server is the piece that lets your assistant work with it directly. MCP server for Fluent (ServiceNow SDK).
This MCP server implements the Model Context Protocol specification with the following capabilities:
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
sdk_info — Get SDK version or helpexplain_fluent_api — Look up Fluent SDK documentation for any API or guide. No Fluent project requiredinit_fluent_app — Initialize or convert a ServiceNow app. Non-interactive: missing intent-specific arguments fail with an error naming thembuild_fluent_app — Build the applicationdeploy_fluent_app — Deploy to a ServiceNow instance. SDK flow activation can be skippedfluent_transform — Convert XML or instance metadata to Fluent TypeScript. Local paths do not require auth; instance transforms dodownload_fluent_dependencies — Download dependencies and type definitionsdownload_fluent_app — Download metadata from an instanceclean_fluent_app — Clean output directorypack_fluent_app — Create an installable artifactquery_fluent_records — Read-only Table REST query against an instance; returns a JSON envelopeget-api-spec — Get an API specification or list all available metadata typesConfiguration is passed through the environment: FLUENT_MCP_WORKING_DIR, SN_INSTANCE_URL, SN_AUTH_TYPE, SN_USER_NAME, SN_PASSWORD, SN_SDK_INSTANCE_URL, SN_SDK_OAUTH_CLIENT_ID, SN_SDK_OAUTH_CLIENT_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Installation goes through your MCP client rather than a global install: point it at @modelcontextprotocol/inspector on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Fluent MCP's toolset — sdk_info, explain_fluent_api, init_fluent_app and 11 more — is a fair guide to whether it matches your workflow. It is maintained by modesty; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| sdk_info | Get SDK version or help |
| explain_fluent_api | Look up Fluent SDK documentation for any API or guide. No Fluent project required. |
| init_fluent_app | Initialize or convert a ServiceNow app. Non-interactive: missing intent-specific arguments fail with an error naming them. |
| build_fluent_app | Build the application |
| deploy_fluent_app | Deploy to a ServiceNow instance. SDK flow activation can be skipped. |
| fluent_transform | Convert XML or instance metadata to Fluent TypeScript. Local paths do not require auth; instance transforms do. |
| download_fluent_dependencies | Download dependencies and type definitions |
| download_fluent_app | Download metadata from an instance |
| clean_fluent_app | Clean output directory |
| pack_fluent_app | Create an installable artifact |
| query_fluent_records | Read-only Table REST query against an instance; returns a JSON envelope |
| get-api-spec | Get an API specification or list all available metadata types |
| get-snippet | Get a Fluent code snippet; without id, returns the first available snippet and any additional snippet IDs |
| get-instruct | Get authoring guidance, conventions, and common pitfalls for a metadata type |
{
"mcpServers": {
"fluent-mcp": {
"command": "npx",
"args": ["-y", "@modesty/fluent-mcp"],
"env": {
"FLUENT_MCP_WORKING_DIR": "/absolute/path/to/your/fluent-project",
"SN_INSTANCE_URL": "https://your-instance.service-now.com",
"SN_AUTH_TYPE": "basic",
"SN_USER_NAME": "local-username",
"SN_PASSWORD": "local-password"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| FLUENT_MCP_WORKING_DIR | Filesystem location the server is allowed to use. | Optional |
| SN_INSTANCE_URL | Endpoint or connection string the server talks to. | Yes |
| SN_AUTH_TYPE | Configuration value read at startup. | Optional |
| SN_USER_NAME | Configuration value read at startup. | Optional |
| SN_PASSWORD | Configuration value read at startup. | Optional |
| SN_SDK_INSTANCE_URL | Endpoint or connection string the server talks to. | Yes |
| SN_SDK_OAUTH_CLIENT_ID | Configuration value read at startup. | Optional |
| SN_SDK_OAUTH_CLIENT_SECRET | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.