Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ What actually happened.

- OS: [e.g., macOS 14.0, Windows 11, Ubuntu 22.04]
- Node.js version: [e.g., 20.10.0]
- MCP Client: [e.g., Claude Code, Claude Desktop, VS Code]
- MCP Client: [e.g., Claude Code, Claude Desktop]

## Netlist Format

Expand Down
27 changes: 0 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,33 +98,6 @@ Install [OpenAI Codex](https://developers.openai.com/codex/cli/), then run:
codex mcp add pdf-analyzer -- pdf-analyzer
```

### Gemini CLI

Install [Gemini CLI](https://geminicli.com/docs/get-started/installation/), then run:

```bash
gemini mcp add --scope user pdf-analyzer pdf-analyzer
```

### VS Code (GitHub Copilot)

Download [VS Code](https://code.visualstudio.com/)

Add to `.vscode/mcp.json` in your project:

```json
{
"servers": {
"pdf-analyzer": {
"type": "stdio",
"command": "pdf-analyzer"
}
}
}
```

Then enable it in **Configure Tools** (click the tools icon in Copilot chat).

## Usage

Once connected, ask your AI assistant to analyze any PDF:
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ When the `PORT` environment variable is set (Cloud Run sets this automatically),

### The `/mcp` Endpoint

Used by MCP-aware clients (Claude Code, VS Code, Gemini CLI). The request body is a JSON-RPC message following the MCP Streamable HTTP specification. The response is an SSE stream.
Used by MCP-aware clients (Claude Code). The request body is a JSON-RPC message following the MCP Streamable HTTP specification. The response is an SSE stream.

```bash
curl -X POST https://your-service.run.app/mcp \
Expand Down
Loading