Skip to main content
Glama
shashank-sn

positioning-bridge

by shashank-sn

Positioning Bridge

ci license: MIT

Positioning Bridge checks whether a draft carries the right company messages for its audience, channel, funnel stage, locale, and campaign.

a company keeps one versioned positioning pack. writers use the same policy through a CLI, MCP host, or TypeScript library. every result names the exact pillar, claim, rule, campaign, competitor, and source that caused it.

what it checks

company decision

draft result

required positioning pillar is absent

missing_message

draft conflicts with an explicit policy rule

contradiction

claim is prohibited, unapproved, unqualified, or expired

unsupported_claim or stale_evidence

named competitor comparison has no registered claim

unsupported_claim

disclosure is missing after its trigger

required_disclosure

draft breaks the active campaign narrative

campaign_drift

optional message could make the position clearer

positioning_opportunity

the decision is pass, needs_revision, or blocked. there is no composite brand score. deterministic and model-assisted evidence stay labeled separately.

Related MCP server: MCP Gatekeeper

run the example

requirements: Node.js 22 or newer and npm.

git clone https://github.com/shashank-sn/positioning-bridge.git
cd positioning-bridge
npm ci
npm run build
node dist/cli/main.js validate --pack examples/acme/positioning.yaml

check the passing fictional draft:

node dist/cli/main.js check \
  --pack examples/acme/positioning.yaml \
  --content examples/acme/drafts/pass.md \
  --audience platform-leader \
  --channel landing-page \
  --funnel-stage consideration \
  --campaign campaign.launch

check from stdin and keep the structured result:

printf '%s\n' 'Acme trains on customer content.' | node dist/cli/main.js check \
  --pack examples/acme/positioning.yaml \
  --stdin \
  --audience platform-leader \
  --channel landing-page \
  --funnel-stage consideration \
  --json

the command exits 0 for pass, 1 for needs_revision or blocked, and 2 for a usage or configuration error. omitted locale uses the pack's defaultLocale.

create a starter pack without overwriting an existing file:

node dist/cli/main.js init --output company-positioning.yaml

the project is open source on GitHub under the MIT license. positioning-bridge has not been published to npm yet, so use the clone workflow above for 0.1.0.

connect an MCP host

build the repository, then give the host the absolute pack and executable paths:

{
  "mcpServers": {
    "positioning-bridge": {
      "command": "node",
      "args": [
        "/absolute/path/to/positioning-bridge/dist/cli/main.js",
        "serve",
        "--pack",
        "/absolute/path/to/company-positioning.yaml"
      ]
    }
  }
}

the server loads one pack at startup and exposes four read-only tools:

  • get_positioning_context returns applicable policy plus structured reasons;

  • create_content_brief returns required, approved, prohibited, and disclosure policy;

  • check_content returns the decision, coverage, capabilities, and typed findings;

  • explain_positioning_item accepts a policy or emitted finding ID plus context.

restart the process after changing the pack. the MCP guide contains the tool inputs, outputs, Codex command, and writer sequence.

positioning pack

a pack contains:

  • context catalogs for audiences, channels, funnel stages, and locales;

  • evidence sources with approval, visibility, verification, and expiry state;

  • pillars and approved, review-required, or prohibited claims;

  • named competitors and enforcement for unregistered comparisons;

  • campaign narratives, desired actions, required messages, and exclusions;

  • deterministic contradiction, disclosure, language, and campaign rules.

IDs are stable and every reference is validated before the server starts. see the pack reference, generated JSON Schema, and complete fictional Acme pack.

certainty and safety boundary

confirmed contradictions come from explicit deterministic rules. an optional SemanticReviewer can report paraphrases and contextual conflicts. those findings stay model_assisted, default to human review, and cannot block by themselves.

default runtime behavior:

  • makes no network request;

  • stores no submitted draft;

  • loads only the configured pack path;

  • caps pack and content size;

  • exposes no policy mutation or publishing tool.

Positioning Bridge checks supplied policy and supplied evidence state. it does not prove an external fact, legal approval, customer permission, or source authenticity.

use with Hold Your Voice

Positioning Bridge and Hold Your Voice remain separate gates. Positioning Bridge checks message policy and evidence. HYV checks voice and linguistic patterns. neither package imports the other, and neither result is publication approval.

TypeScript library

import { PositioningService, loadPack } from "positioning-bridge";

const pack = await loadPack("./company-positioning.yaml");
const service = new PositioningService(pack);
const result = await service.checkContent({
  content: "draft text",
  context: {
    audienceId: "primary-buyer",
    channelId: "website",
    funnelStageId: "consideration",
    localeId: "en",
  },
});

MCP construction is exported from positioning-bridge/mcp. the JSON Schema is exported from positioning-bridge/schema.

development and verification

npm ci
npm run verify
npm run smoke:package

npm run verify checks formatting, linting, strict types, tests and coverage, schema drift, architecture direction, documentation links, production build, and a live stdio handshake. npm run smoke:package packs the exact version, checks its allowlist and Markdown links, installs it in a clean temporary project, then checks its binary, library export, example validation, and MCP handshake.

the component boundaries live in architecture.md and the executable architecture policy. release operations live in operations.md.

project status

0.1.0 is the local-first foundation. it does not include a hosted control plane, web UI, remote model provider, CMS crawler, publication workflow, or performance analytics. those boundaries are recorded in ADR 0001.

read CONTRIBUTING.md before opening a change. use GitHub Issues for reproducible bugs and bounded feature requests. use GitHub Discussions for setup and design questions. report vulnerabilities through the private route in SECURITY.md.

MIT licensed. see LICENSE.

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    A
    quality
    D
    maintenance
    Provides standardized brand guidelines and structured content templates for marketing assets like blogs, emails, and social media. It serves as a central source of truth for brand voice and strategy through an extensible file-based system.
    1
  • F
    license
    Not graded
    quality
    C
    maintenance
    Provides lightweight documentation review tools including issue detection, readability scoring, style checking, and document summarization for integration with MCP-compatible clients.
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to interact with WordPress sites over MCP, providing read-only tools for AEO/GEO readiness, AI visibility, traffic, request logs, bot identification, page checks, and schema/markdown previews, plus opt-in write tools to draft, edit, and publish posts with permission checks and auditing.
    GPL 2.0

View all related MCP servers

Related MCP Connectors

  • Brivvy MCP (OAuth): on-brand AI content, voice rules, templates, glossary.

  • Hosted MCP for creating, checking, deploying, and hosting static sites for AI agents.

  • Remote MCP for C2PA intake verifier MCP, structured receipts, audit logs, and reviewer-ready evidenc

View all MCP Connectors

Latest Blog Posts

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/shashank-sn/positioning-bridge'

If you have feedback or need assistance with the MCP directory API, please join our Discord server