Skip to content
ai-supply.store
DiscoverCategoriesLeaderboardsCommunityAgent APIFAQ
Sign inSign up free
catalog / Language & NLP / spaCy
◆SkillLanguage & NLPFree

spaCy

Industrial-strength NLP library for Python with pre-trained pipelines for tokenization, NER, parsing, and more.

@ai-supply
Installs578k
⟳ upstream release-v3.8.14 · updated 4mo ago
↗ Source repository
← More Language & NLPLanguage & NLP leaderboard →How we grade security →Source ↗
! Grade B · 75/100 · ReviewSecurity assessment
✓No compromise signals37capabilities surfaced1known CVE6of 20 OWASP controls clear
External endpoints declaredExternal endpoints declaredExternal endpoints declaredSuspicious network references
scanned 17d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

spaCy

spaCy is a production-ready, industrial-strength NLP library for Python and Cython. It provides pre-trained pipelines for 65+ languages and is designed from the ground up for real applications — prioritizing speed, accuracy, and a clean developer API.

Key Features

  • Pre-trained pipelines: Named entity recognition (NER), part-of-speech tagging, dependency parsing, text classification, and sentence segmentation — out of the box for 65+ languages
  • Transformer models: Seamlessly integrate BERT, RoBERTa, or any HuggingFace model as a spaCy component
  • Custom components: Extend pipelines with your own processing steps using @Language.component
  • Rule-based matching: Matcher and PhraseMatcher for regex-like matching over linguistic annotations
  • spaCy Projects: Reproducible NLP workflows with config files, versioning, and remote storage
  • Speed: Written in Cython — 5–10x faster than NLTK on most tasks

Quick Start

pip install spacy
python -m spacy download en_core_web_sm
import spacy

nlp = spacy.load("en_core_web_sm")
doc = nlp("Apple is building a new AI campus in London.")

for ent in doc.ents:
    print(ent.text, ent.label_)
# Apple ORG  |  London GPE

Add to ai-supply

npx ai-supply add spacy-nlp-library

Curated mirror of the open-source spaCy (MIT). Get it from the source.

Rating rank
#1
of 30 in Language & NLP
Install rank
#4
of 30 in Language & NLP
Security score
75/100 · B
review
Security rank
#19
of 30 in Language & NLP
Installs
578k
cat avg 145k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Language & NLP leaderboard →
! Security: Review · 7575/100 · grade Bscanned 17d ago
✓ no compromise signals38 risk-surface · 9/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · med confidence (static)
⚑ filesystem⚑ secrets
egress → www.oracle.com, explosion.ai, spacy.io, shirishkadam.com, alschwalm.com, aljohri.com, bramvanroy.be, friendlybit.com +32
skill: \U0001F6A8 Submit a Bug Report30 scripts

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM03Supply Chaincritical
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 33 pip requirements declared · explosion-spaCy-e671995/requirements.txtrisk surface
•Dependency manifest — 46 npm dependencies declared · explosion-spaCy-e671995/website/package.jsonrisk surface
•Dependency manifest — 2 pip requirements declared · explosion-spaCy-e671995/website/setup/requirements.txtrisk surface
•Vulnerable dependencies — 111 known vulnerabilities in: setuptools@9.1.0, filelock@3.19.1, idna@3.9.0, pygments@2.9.0, @babel/core@7.20.5, @babel/helpers@7.20.6, @babel/plugin-transform-modules-systemjs@7.19.6, @babel/runtime@7.20.1 (CWE-1395)known CVE · -25 pts
⚠LLM01Prompt Injectionhigh
Adversarial instructions embedded in an artifact that hijack a downstream LLM.
•Zero-width characters — 7 hidden characters · explosion-spaCy-e671995/spacy/lang/fa/generate_verbs_exc.pyrisk surface
•Zero-width characters — 41 hidden characters · explosion-spaCy-e671995/spacy/lang/fa/stop_words.pyrisk surface
•Zero-width characters — 477 hidden characters · explosion-spaCy-e671995/spacy/lang/fa/tokenizer_exceptions.pyrisk surface
•Zero-width characters — 9 hidden characters · explosion-spaCy-e671995/spacy/lang/ml/lex_attrs.pyrisk surface
•Trojan-source (bidi) characters — Unicode bidirectional overrides can hide code from reviewers · explosion-spaCy-e671995/spacy/tests/tokenizer/test_naughty_strings.py (CWE-1007)expected
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — pipe-to-shell install · explosion-spaCy-e671995/pyproject.toml (CWE-494)risk surface
•Suspicious code patterns — OS command execution; dynamic code execution · explosion-spaCy-e671995/setup.py (CWE-78)risk surface
•Suspicious code patterns — OS command execution · explosion-spaCy-e671995/spacy/cli/package.py (CWE-78)risk surface
•Suspicious code patterns — pickle deserialization · explosion-spaCy-e671995/spacy/tests/doc/test_pickle_doc.py (CWE-502)risk surface
•Suspicious code patterns — dynamic code execution · explosion-spaCy-e671995/website/docs/usage/101/_serialization.mdx (CWE-95)risk surface
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 2 distinct host(s) · explosion-spaCy-e671995/.github/CONTRIBUTOR_AGREEMENT.mdrisk surface
•External endpoints declared — 1 distinct host(s) · explosion-spaCy-e671995/.github/FUNDING.ymlrisk surface
•External endpoints declared — 3 distinct host(s) · explosion-spaCy-e671995/.github/contributors/5hirish.mdrisk surface
•External endpoints declared — 20 distinct host(s) · explosion-spaCy-e671995/CONTRIBUTING.mdrisk surface
•External endpoints declared — 15 distinct host(s) · explosion-spaCy-e671995/README.mdrisk surface
•External endpoints declared — 4 distinct host(s) · explosion-spaCy-e671995/examples/README.mdrisk surface
•External endpoints declared — 9 distinct host(s) · explosion-spaCy-e671995/extra/DEVELOPER_DOCS/Code Conventions.mdrisk surface
•External endpoints declared — 8 distinct host(s) · explosion-spaCy-e671995/netlify.tomlrisk surface
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · explosion-spaCy-e671995/setup.py (CWE-272)risk surface
•External endpoints declared — 7 distinct host(s) · explosion-spaCy-e671995/spacy/lang/hi/lex_attrs.pyrisk surface
•External endpoints declared — 5 distinct host(s) · explosion-spaCy-e671995/spacy/lang/ur/lex_attrs.pyrisk surface
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · explosion-spaCy-e671995/spacy/tests/test_cli.py (CWE-272)risk surface
•Egress to a private/loopback host — 0.0.0.0, 10.1.1.0, 10.1.1.255, 224.1.1.1, 10.1.1.1 · explosion-spaCy-e671995/spacy/tests/tokenizer/test_urls.py (CWE-918)risk surface
•External endpoints declared — 40 distinct host(s) · explosion-spaCy-e671995/spacy/tests/tokenizer/test_urls.pyrisk surface
•Egress to a private/loopback host — 0.0.0.0 · explosion-spaCy-e671995/website/README.md (CWE-918)risk surface
•External endpoints declared — 11 distinct host(s) · explosion-spaCy-e671995/website/docs/api/cli.mdxrisk surface
•External endpoints declared — 13 distinct host(s) · explosion-spaCy-e671995/website/docs/styleguide.mdxrisk surface
•External endpoints declared — 14 distinct host(s) · explosion-spaCy-e671995/website/docs/usage/projects.mdxrisk surface
•External endpoints declared — 6 distinct host(s) · explosion-spaCy-e671995/website/docs/usage/v3-1.mdxrisk surface
•External endpoints declared — 138 distinct host(s) · explosion-spaCy-e671995/website/meta/universe.jsonrisk surface
⚠LLM07System Prompt Leakagemedium
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Internal host / private infrastructure reference — shipped content references a private IP range or internal-only host · explosion-spaCy-e671995/spacy/tests/tokenizer/test_urls.py (CWE-200)risk surface
•Low-confidence secret match — 2 possible: aws-access-token · explosion-spaCy-e671995/website/meta/universe.json (CWE-798)risk surface
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · explosion-spaCy-e671995/spacy/cli/benchmark_speed.py (CWE-835)risk surface
⚠LLM02Sensitive Information Disclosurelow
Secrets, credentials or PII shipped inside the artifact.
•Low-confidence secret match — 2 possible: aws-access-token · explosion-spaCy-e671995/website/meta/universe.json (CWE-798)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML06AI Supply Chaincritical
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 33 pip requirements declared · explosion-spaCy-e671995/requirements.txtrisk surface
•Dependency manifest — 46 npm dependencies declared · explosion-spaCy-e671995/website/package.jsonrisk surface
•Dependency manifest — 2 pip requirements declared · explosion-spaCy-e671995/website/setup/requirements.txtrisk surface
•Vulnerable dependencies — 111 known vulnerabilities in: setuptools@9.1.0, filelock@3.19.1, idna@3.9.0, pygments@2.9.0, @babel/core@7.20.5, @babel/helpers@7.20.6, @babel/plugin-transform-modules-systemjs@7.19.6, @babel/runtime@7.20.1 (CWE-1395)known CVE · -25 pts
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — pipe-to-shell install · explosion-spaCy-e671995/pyproject.toml (CWE-494)risk surface
•Suspicious code patterns — OS command execution; dynamic code execution · explosion-spaCy-e671995/setup.py (CWE-78)risk surface
•Suspicious code patterns — OS command execution · explosion-spaCy-e671995/spacy/cli/package.py (CWE-78)risk surface
•Suspicious code patterns — pickle deserialization · explosion-spaCy-e671995/spacy/tests/doc/test_pickle_doc.py (CWE-502)risk surface
•Suspicious code patterns — dynamic code execution · explosion-spaCy-e671995/website/docs/usage/101/_serialization.mdx (CWE-95)risk surface
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML02Data PoisoningPassed
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (26) · hygiene / uncategorized
•Unrecognized file type — '.?' is not on the allowlist · explosion-spaCy-e671995/.github/contributors/elben10risk surface
•Suspicious network references — suspicious TLD (3 URLs) · explosion-spaCy-e671995/.github/contributors/pickfire.mdrisk surface
•Unrecognized file type — '.disabled' is not on the allowlist · explosion-spaCy-e671995/.github/workflows/gputests.yml.disabledrisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · explosion-spaCy-e671995/.gitignorerisk surface
•Unrecognized file type — '.cff' is not on the allowlist · explosion-spaCy-e671995/CITATION.cffrisk surface
•Unrecognized file type — '.in' is not on the allowlist · explosion-spaCy-e671995/MANIFEST.inrisk surface
•Unrecognized file type — '.iob' is not on the allowlist · explosion-spaCy-e671995/extra/example_data/ner_example_data/ner-sent-per-line.iobrisk surface
•Unrecognized file type — '.jsonl' is not on the allowlist · explosion-spaCy-e671995/extra/example_data/textcat_example_data/cooking.jsonlrisk surface
•Unrecognized file type — '.cfg' is not on the allowlist · explosion-spaCy-e671995/setup.cfgrisk surface
•Unrecognized file type — '.pxd' is not on the allowlist · explosion-spaCy-e671995/spacy/attrs.pxdrisk surface
•Unrecognized file type — '.pyx' is not on the allowlist · explosion-spaCy-e671995/spacy/attrs.pyxrisk surface
•Unrecognized file type — '.jinja' is not on the allowlist · explosion-spaCy-e671995/spacy/cli/templates/quickstart_training.jinjarisk surface
•Unrecognized file type — '.pyi' is not on the allowlist · explosion-spaCy-e671995/spacy/lexeme.pyirisk surface
•Unrecognized file type — '.c' is not on the allowlist · explosion-spaCy-e671995/spacy/matcher/polyleven.crisk surface
•Unrecognized file type — '.hh' is not on the allowlist · explosion-spaCy-e671995/spacy/pipeline/_parser_internals/nonproj.hhrisk surface
•Suspicious network references — raw IP URL (70 URLs) · explosion-spaCy-e671995/spacy/tests/tokenizer/test_urls.pyrisk surface
•Unrecognized file type — '.dockerignore' is not on the allowlist · explosion-spaCy-e671995/website/.dockerignorerisk surface
•Unrecognized file type — '.eslintrc' is not on the allowlist · explosion-spaCy-e671995/website/.eslintrcrisk surface
•Unrecognized file type — '.nvmrc' is not on the allowlist · explosion-spaCy-e671995/website/.nvmrcrisk surface
•Unrecognized file type — '.prettierignore' is not on the allowlist · explosion-spaCy-e671995/website/.prettierignorerisk surface
•Unrecognized file type — '.prettierrc' is not on the allowlist · explosion-spaCy-e671995/website/.prettierrcrisk surface
•Suspicious network references — raw IP URL (7 URLs) · explosion-spaCy-e671995/website/README.mdrisk surface
•Unrecognized file type — '.mdx' is not on the allowlist · explosion-spaCy-e671995/website/docs/api/architectures.mdxrisk surface
•Unrecognized file type — '.mjs' is not on the allowlist · explosion-spaCy-e671995/website/meta/dynamicMeta.mjsrisk surface
•Suspicious network references — URL shortener (428 URLs) · explosion-spaCy-e671995/website/meta/universe.jsonrisk surface
•Unrecognized file type — '.webmanifest' is not on the allowlist · explosion-spaCy-e671995/website/public/manifest.webmanifestrisk surface
✔ verified source · pinned explosion-spaCy-e671995
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/spacy-nlp-library/check). Click a policy:

Consume spaCy programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/spacy-nlp-library

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/spacy-nlp-library/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add spacy-nlp-library

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/spacy-nlp-library/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "spacy-nlp-library" })
OpenAPI spec →
vlatest
! Security: Review · 751mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

Free, security-vetted AI capabilities — skills, MCPs, plugins, agents, datasets and more, each graded and freshness-tracked, and built for humans and agents alike.

api · v3.1status · all green
Contact
support@ai-supply.storesecurity@ai-supply.store
Catalog
  • Discover
  • Categories
  • Leaderboards
  • Benchmarks
  • Security
  • Scan a repo
Community
  • Community
  • FAQ
For agents
  • Quickstart (60s)
  • Authorize an agent
  • Agent API
  • OpenAPI spec
For builders
  • Publish
  • Dashboard
Account
  • Create account
  • Sign in
  • Settings
Legal
  • Terms
  • Publisher Agreement
  • Acceptable Use
  • Privacy