lineai-mcp-server copilot-instructions.md

lineai-mcp-server copilot-instructions.md is an instructions file for GitHub Copilot from lineai-intelligence/lineai-mcp-server. It costs 714 tokens per session, scanned A, original, MPL-2.0.

A set of Copilot instructions for a Python MCP server that connects AI programming assistants to Lineai’s dependency knowledge graph.

In plain words
What is it for?
Use it when developing tools that analyze dependencies and database impacts through Lineai’s APIs, Neo4j graph database, and HTTP requests.
Why use it?
It explains how the server is organized and how its asynchronous Python code, API requests, and tool handlers should work together.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/lineai-intelligence/lineai-mcp-server/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/lineai-intelligence/lineai-mcp-server

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for lineai-mcp-server copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/lineai-intelligence/lineai-mcp-server/copilot-instructions.svg)](https://agentmods.dev/instructions/lineai-intelligence/lineai-mcp-server/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/lineai-intelligence/lineai-mcp-server/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/lineai-intelligence/lineai-mcp-server/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 714 This file is loaded in full into every session.
When invoked 714 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00714 $0.00714
Opus 5 $0.00357 $0.00357
Sonnet 5 $0.00143 $0.00143
Haiku 4.5 $0.00071 $0.00071

Measured 6d ago against content hash d790001dbc65, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

lineai-mcp-server copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Lineai MCP Server - AI Assistant Instructions

About This Codebase

This repository contains a Model Context Protocol (MCP) server that integrates with Lineai's knowledge graph APIs. It enables AI programming assistants (like GitHub Copilot and Cursor) to access dependency data from Lineai to analyze code and database impacts.

Key Technologies

  • Python 3.13+ with extensive use of async/await
  • Model Context Protocol SDK (mcp[cli])
  • Neo4j for graph database operations
  • HTTPX for API requests
  • Environment variables via dotenv for configuration

Project Structure

  • src/lineai_mcp_server/: Core package
  • __init__.py: Package initialization and entry point
  • server.py: MCP server implementation
  • handlers.py: Tool handlers implementation
  • utils.py: API interaction utilities

Core Coding Patterns

MCP Server Pattern

server = Server("lineai-mcp-server")

@server.list_tools()
async def handle_list_tools() -> list[types.Tool]:
    # Define and return tools
    
@server.call_tool()
async def handle_call_tool(name: str, arguments: dict | None) -> list[types.TextContent]:
    # Handle tool execution

Error Handling

try:
    # Operations that might fail
except Exception as e:
    sys.stderr.write(f"Error: {str(e)}\n")
    return [types.TextContent(type="text", text=f"# Error\n\n{str(e)}")]

Style Guidelines

  1. Copyright Headers: Include MPL 2.0 headers in all Python files
  2. Docstrings: Google-style docstrings for modules/classes/functions
  3. Type Hints: Always use Python type hints
  4. Asynchronous: Keep I/O operations asynchronous
  5. Format Outputs: Return markdown-formatted text in tool responses

Tool Implementation Pattern

When implementing new MCP tools:

  1. Add to handle_list_tools() with descriptive name (prefix: lineai-)
  2. Add handler in handle_call_tool()
  3. Implement handler function with error handling
  4. Return results as markdown-formatted text

Read the full file on GitHub · 100 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 100 lines · 714 tokens per session scan A d790001dbc65

Subscribe to this mod's changes

lineai-mcp-server copilot-instructions.md is an instructions file published in the GitHub repository lineai-intelligence/lineai-mcp-server (38 stars, last pushed 24d ago), licensed MPL-2.0. It adds 714 tokens to every session, about $0.0036 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.