Skip to main content

An MCP server for the ASD-STE100 (Simplified Technical English) Issue 9 standard.

Project description

biz.dfch.AsdSte100Mcp

ASD-STE100: Issue 9 License: AGPL v3 Python Lint and Test TestPyPI version PyPI version PyPI downloads MCP Auth: none

An MCP server for the ASD-STE100 (Simplified Technical English) Issue 9 standard.

ASD-STE100: Copyright by (c) ASD.

I am in no way affiliated with ASD. ASD does not endorse my work.

Table of Contents

Authentication

This server exposes only read-only lookup tools over vocabulary and rules data that is bundled with the package; there is nothing to authenticate against. No API keys, tokens, or credentials are required or supported in either stdio or sse transport mode. If you expose the sse transport beyond localhost, secure it at the network layer (e.g. a reverse proxy) rather than expecting the server to authenticate requests itself.

Tools

Vocabulary

Tool Description
word_find Search for a term by exact name (case-insensitive) in the ASD-STE100 Issue 9 vocabulary. Return approved/rejected status, part of speech, STE examples, and approved alternatives. Use this first when you know the exact word. Use word_match with a wildcard if this tool returns no items.
word_match Search the vocabulary using a regular expression pattern. Return all entries whose term matches. Use it to find all words with a common prefix or pattern (e.g. ^de or .*tion$). Paginated (max_results/offset); returns a WordResult.
word_fuzzy Search for a term with sequence-matching (Python difflib.get_close_matches). Results may not be obvious — use when word_find returns nothing and you want fuzzy suggestions.
word_list Return all vocabulary entries. Only use when you need to process the full vocabulary. Use word_count instead if you only need the total. Paginated (max_results/offset); returns a WordResult.
word_count Return the total number of entries in the vocabulary. Use instead of word_list when you only need the count.
word_synonym Search for vocabulary entries that are WordNet synonyms of a word, via the biz-dfch-asdste100nlp library's Nlp class. Use this to find approved alternatives for a non-STE word.

Rules

Tool Description
rules_find Search for rules in the ruleset by exact id (case-insensitive), e.g. R1.1 or GR-8. Use this first when you know the exact id.
rules_match Search rules using a regular expression matched against the rule name and summary.
rules_search Full-text search across every text a rule carries (section, category, name, summary, and all content blocks: text, notes, examples, technical noun/verb lists). Optionally restrict to specific content types. Paginated (max_results/offset); returns a SearchResult.
rules_by_section Search for rules by exact section name (case-insensitive), e.g. Words.
rules_by_category Search for rules by exact category name (case-insensitive), e.g. Technical nouns.
rules_examples Return content items across rules, optionally scoped by id/section/category and filtered by content type. Paginated (max_results/offset); returns a RulesExamplesResult.
rules_overview Return a lightweight, per-rule overview (id, type, section, category, name, optional summary, and content counts/flags) without shipping every content item.
rules_toc Return the distinct (section, category) pairs as a table-of-contents outline, optionally scoped to one section.

Installation

pip install biz-dfch-asdste100mcp

Or with uv:

uv add biz-dfch-asdste100mcp

Usage

MCP Inspector

If you want to test the MCP server without a tool like OpenCode, you can do this with MCP Inspector.

MCP Inspector is part of the mcp[cli] package. When you install this project with --extra dev you can use MCP Inspector.

NOTE: The examples below use bunx instead of npx to launch MCP Inspector; npx has not been tested.

stdio (Claude Desktop, OpenCode, and other MCP hosts)

asdste100-mcp

Run MCP Inspector against the server over stdio:

bunx @modelcontextprotocol/inspector uv run --frozen --directory . asdste100-mcp

MCP Inspector with stdio

SSE / network

asdste100-mcp --transport sse --host localhost --port 8000

NOTE: You do not have to supply the option --port to the MCP server. The default value of port is 8000.

Start the server, then connect MCP Inspector to it — these are two separate commands, run in two separate terminals:

# terminal 1: start the server
uvx --from . asdste100-mcp -t sse
# terminal 2: launch the inspector and connect it to the running server
bunx @modelcontextprotocol/inspector

Start the MCP server with uvx and then start the MCP Inspector with bunx

MCP Inspector with sse

Options

Option Env var Default Description
--transport ASDSTE100_MCP_TRANSPORT stdio Transport mode: stdio or sse
--host ASDSTE100_MCP_HOST localhost Bind address (SSE only)
--port ASDSTE100_MCP_PORT 8000 TCP port (SSE only)
--env auto-discovered Path to a .env file
--file / -f ASDSTE100_MCP_FILES (empty) Path to a vocabulary file (*.jsonl); repeatable
--rules-file / -r ASDSTE100_MCP_RULES_FILES (empty) Path to a rules file (a single JSON array); repeatable

Vocabulary configuration

Env var Default Description
ASDSTE100_MCP_FILES (empty) Colon-separated paths to additional vocabulary files
ASDSTE100_MCP_USE_STE100 true Load the built-in ASD-STE100 Issue 9 vocabulary
ASDSTE100_MCP_USE_STE100_TECHNICAL_WORDS false Also load the technical words vocabulary

Rules configuration

Env var Default Description
ASDSTE100_MCP_RULES_FILES (empty) Colon-separated paths to additional rules files (each a single JSON array)
ASDSTE100_MCP_USE_STE100_RULES true Load the built-in ASD-STE100 Issue 9 ruleset

Add to OpenCode

To add the ASD-STE100 (Simplified Technical English) MCP server to your OpenCode configuration:

  1. Open your OpenCode config file (typically ~/.config/opencode/opencode.json or ~/.config/opencode/opencode.jsonc)

  2. Add the following configuration to the mcp section (and use it via stdio):

"asdste100": {
  "type": "local",
  "enabled": true,
  "command": ["uvx", "--from", "biz-dfch-asdste100mcp", "asdste100-mcp"]
}
  1. Save the file and restart OpenCode

This enables OpenCode to access ASD-STE100 vocabulary and rules lookups for technical writing and documentation compliance.

Development

Install dev dependencies

uv sync --all-extras

Run linters

uv run --frozen ruff format --check
uv run --frozen ruff check
uv run --frozen pylint $(git ls-files '*.py')

Run tests

uv run --frozen python -m unittest discover -v -s tests -t . -p "test_*.py"

Make a Release

1. Make sure all tests pass

Before releasing, make sure the CI pipeline is green on the dev branch:

uv run --frozen ruff format --check
uv run --frozen ruff check
uv run --frozen pylint $(git ls-files '*.py')
uv run --frozen python -m unittest discover -v -s tests -t . -p "test_*.py"

2. Increase the version

Update the version in pyproject.toml:

version = "x.y.z"

3. Commit and push to dev

git add pyproject.toml CHANGELOG.md
git commit -m "chore: bump version to vx.y.z"
git push origin dev

4. Merge dev into main

git checkout main
git merge dev
git push origin main

5. Create and push a version tag

export VERSION=x.y.z
git tag v${VERSION}
git push origin v${VERSION}

Pushing the tag triggers the publish.yml workflow, which will:

  1. Build the sdist and wheel.
  2. Publish to TestPyPI (environment testpypi).
  3. Publish to PyPI (environment pypi), only if TestPyPI succeeded.
  4. Publish to the MCP Registry (publish-to-mcp-registry job) — requires the new version to be live on PyPI first.
  5. Create a GitHub Release with auto-generated notes and the distribution artifacts attached.

Then switch back to dev to continue work:

git checkout dev

Configure Trusted Publishing

The workflow uses OIDC Trusted Publishing — no API tokens or secrets are needed.

GitHub: create environments

Go to your repo → SettingsEnvironments and create two environments:

Environment Recommended protection
testpypi None required
pypi Add a required reviewer to prevent accidental production releases

TestPyPI

Log in at test.pypi.orgYour accountPublishingAdd a new pending publisher:

Field Value
PyPI project name biz-dfch-asdste100mcp
Owner dfch
Repository biz.dfch.AsdSte100Mcp
Workflow name publish.yml
Environment testpypi

PyPI

Log in at pypi.orgYour accountPublishingAdd a new pending publisher:

Field Value
PyPI project name biz-dfch-asdste100mcp
Owner dfch
Repository biz.dfch.AsdSte100Mcp
Workflow name publish.yml
Environment pypi

MCP Registry Publishing

The publish-to-mcp-registry job uses GitHub OIDC authentication and does not require additional setup — it will automatically publish to the official MCP Registry once the package is live on PyPI.

Verify your server is registered:

curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.dfch/biz-dfch-asdste100mcp"

License

AGPL-3.0-or-later

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

biz_dfch_asdste100mcp-2.0.0.tar.gz (37.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

biz_dfch_asdste100mcp-2.0.0-py3-none-any.whl (60.2 kB view details)

Uploaded Python 3

File details

Details for the file biz_dfch_asdste100mcp-2.0.0.tar.gz.

File metadata

  • Download URL: biz_dfch_asdste100mcp-2.0.0.tar.gz
  • Upload date:
  • Size: 37.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for biz_dfch_asdste100mcp-2.0.0.tar.gz
Algorithm Hash digest
SHA256 552d95703207e20d170d64d464cb592ce001c002db4e6ca6e5ab0fff8dfe79ca
MD5 bc56231736e3ba375ea05f5c2d91b01b
BLAKE2b-256 d0a8fbea6ba57173e615d4f4d405753e49b6459368bf6780be339c98d5af7061

See more details on using hashes here.

Provenance

The following attestation bundles were made for biz_dfch_asdste100mcp-2.0.0.tar.gz:

Publisher: publish.yml on dfch/biz.dfch.AsdSte100Mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file biz_dfch_asdste100mcp-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for biz_dfch_asdste100mcp-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8e9ebc367ddef87512c915b9216a9211c701d2b4355dc3831362e22aa9344824
MD5 4f8c7bfb80beff641aa21152c14d5703
BLAKE2b-256 c9e055738d338e6914f3e57767ce1cc5bbbc6044adb003a352561d788efde95f

See more details on using hashes here.

Provenance

The following attestation bundles were made for biz_dfch_asdste100mcp-2.0.0-py3-none-any.whl:

Publisher: publish.yml on dfch/biz.dfch.AsdSte100Mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page