Lightbringer
Server Details
Register innovations, request patent preparation, and collaborate with Lightbringer’s patent team.
Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.
If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.
- Status
- Unhealthy
- Uptime
- 29.2% over 39 days
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- lightbringer-patents/mcp-connector
- GitHub Stars
- 0
- Server Listing
- Lightbringer
TDQS
Scored across 19 tools
Most tools target a distinct resource and action, and descriptions clearly separate anchored comments, discussion-feed comments, and thread replies. The only mild ambiguity is add_comment vs reply_to_comment, since an anchored comment inside an existing thread becomes a reply, but the descriptions are clear enough to guide selection.
The toolset overwhelmingly follows a verb_noun snake_case pattern, e.g. create_invention, list_reviews, update_invention, validate_invention. A few generic single-word names like fetch, search, and whoami are minor deviations but do not create real inconsistency.
At 19 tools, the server is on the heavier side, but the scope covers invention authoring, validation, feedback, review interactions, search, and task status. Each tool has a clear purpose, so the count feels slightly large but justified rather than bloated.
The toolset covers the main invention lifecycle well: template, create, validate, update, submit, list, fetch, search, feedback, and review engagement. There is no delete or cancel capability and no comment editing, but these appear outside the intended workflow rather than being obvious dead ends.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
11 tool updates
- Changed
add_comment3 fields changed- added
Input schema / properties / review_id / maxLengthAdded value: +64 - added
Input schema / properties / review_id / minLengthAdded value: +1 - added
Input schema / properties / review_id / patternAdded value: +"^[A-Za-z0-9_-]+$"
- Added
add_discussion_comment - Changed
fetch2 fields changed- added
Output schema / properties / partAdded value: +{ + "type": "string" +} - added
Output schema / properties / partsAdded value: +{ + "items": { + "additionalProperties": false, + "properties": { + "createdAt": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + }, + "id": { + "type": "string" + }, + "label": { + "maxLength": 200, + "minLength": 1, + "type": "string" + }, + "part": { + "enum": [ + "disclosure", + "priority_draft", + "application_text" + ], + "type": "string" + }, + "revisionId": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + }, + "revisionType": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + } + }, + "required": [ + "id", + "part", + "label" + ], + "type": "object" + }, + "type": "array" +}
- Changed
get_invention3 fields changed- added
Input schema / properties / invention_id / maxLengthAdded value: +64 - added
Input schema / properties / invention_id / minLengthAdded value: +1 - added
Input schema / properties / invention_id / patternAdded value: +"^[A-Za-z0-9_-]+$"
- Changed
get_invention_feedback3 fields changed- added
Input schema / properties / invention_id / maxLengthAdded value: +64 - added
Input schema / properties / invention_id / minLengthAdded value: +1 - added
Input schema / properties / invention_id / patternAdded value: +"^[A-Za-z0-9_-]+$"
- Changed
get_review6 fields changed- added
Input schema / properties / review_id / maxLengthAdded value: +64 - added
Input schema / properties / review_id / minLengthAdded value: +1 - added
Input schema / properties / review_id / patternAdded value: +"^[A-Za-z0-9_-]+$" - added
Output schema / properties / artifactAdded value: +{ + "additionalProperties": false, + "properties": { + "markdown": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + }, + "reason": { + "type": "string" + }, + "status": { + "enum": [ + "rendered", + "notice", + "unavailable" + ], + "type": "string" + } + }, + "required": [ + "status", + "markdown" + ], + "type": "object" +} - added
Output schema / properties / discussionAdded value: +{ + "items": { + "additionalProperties": false, + "properties": { + "author": { + "additionalProperties": false, + "properties": { + "id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + }, + "name": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + } + }, + "type": "object" + }, + "comment": { + "type": "string" + }, + "createdAt": { + "type": "string" + } + }, + "required": [ + "author", + "comment", + "createdAt" + ], + "type": "object" + }, + "type": "array" +} - changed
Output schema / requiredPrevious value: -[ - "review", - "threads" -]New value: +[ + "review", + "threads", + "discussion", + "artifact" +]
- Changed
reply_to_comment3 fields changed- added
Input schema / properties / review_id / maxLengthAdded value: +64 - added
Input schema / properties / review_id / minLengthAdded value: +1 - added
Input schema / properties / review_id / patternAdded value: +"^[A-Za-z0-9_-]+$"
- Changed
respond_to_review3 fields changed- added
Input schema / properties / review_id / maxLengthAdded value: +64 - added
Input schema / properties / review_id / minLengthAdded value: +1 - added
Input schema / properties / review_id / patternAdded value: +"^[A-Za-z0-9_-]+$"
- Changed
search2 fields changed- added
Output schema / properties / results / items / properties / partAdded value: +{ + "type": "string" +} - added
Output schema / properties / results / items / properties / partsAdded value: +{ + "items": { + "additionalProperties": false, + "properties": { + "createdAt": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + }, + "id": { + "type": "string" + }, + "label": { + "maxLength": 200, + "minLength": 1, + "type": "string" + }, + "part": { + "enum": [ + "disclosure", + "priority_draft", + "application_text" + ], + "type": "string" + }, + "revisionId": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + }, + "revisionType": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] + } + }, + "required": [ + "id", + "part", + "label" + ], + "type": "object" + }, + "type": "array" +}
- Changed
submit_invention3 fields changed- added
Input schema / properties / invention_id / maxLengthAdded value: +64 - added
Input schema / properties / invention_id / minLengthAdded value: +1 - added
Input schema / properties / invention_id / patternAdded value: +"^[A-Za-z0-9_-]+$"
- Changed
update_invention3 fields changed- added
Input schema / properties / invention_id / maxLengthAdded value: +64 - added
Input schema / properties / invention_id / minLengthAdded value: +1 - added
Input schema / properties / invention_id / patternAdded value: +"^[A-Za-z0-9_-]+$"
18 tool updates
- First observed
add_comment - First observed
check_task_status - First observed
create_invention - First observed
fetch - First observed
get_invention - First observed
get_invention_feedback - First observed
get_invention_template - First observed
get_review - First observed
list_inventions - First observed
list_reviews - First observed
reply_to_comment - First observed
respond_to_review - First observed
search - First observed
send_developer_feedback - First observed
submit_invention - First observed
update_invention - First observed
validate_invention - First observed
whoami
Related MCP Connectors
AI-powered patent intelligence for search & analysis
Patent search, USPTO data, patent landscape & pgvector prior-art search for agents.
Patent search and company IP portfolio data
Semantic patent search & analysis: find, compare, and analyze patents by meaning.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAI-powered patent search and analysis across 220M+ global patents. Semantic search, prior art discovery, novelty/patentability reports, and patent content retrieval.Apache 2.0

Patent PreCheckofficial
AlicenseAqualityCmaintenancePatentability pre-check for code — USPTO pillar scores, filing-readiness, and prior-art signals.1249 npm1MIT- AlicenseNot gradedqualityFmaintenanceEnables AI agents to perform patent search, portfolio analysis, technology trend tracking, and semantic prior-art search using USPTO data.MIT
- AlicenseNot gradedqualityAmaintenanceEnables conversational patent data analysis through a set of tools for trend analysis, clustering, word cloud generation, and more. Allows natural language queries to explore patent datasets with structured results and visualizations.1AGPL 3.0
Glama MCP Gateway
Add one secure layer between your agents and this server.