Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,6 @@ settings.local.json

# Uretilen eklenti paketi
*.mcpb

# graphify bilgi grafi ciktilari
graphify-out/
19 changes: 19 additions & 0 deletions .graphifyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Cevirisi olan dosyalar neredeyse birebir ayni dugumleri uretiyor;
# kanonik olanlari (README.md, INSTALLATION.md) tutup gerisini disliyoruz.
README.ar.md
README.en.md
README.es.md
README.ja.md
README.ru.md
README.tr.md
README.zh.md
INSTALLATION.ar.md
INSTALLATION.en.md
INSTALLATION.es.md
INSTALLATION.ja.md
INSTALLATION.ru.md
INSTALLATION.tr.md
INSTALLATION.zh.md

# Grafin kendi ciktisi
graphify-out/
7 changes: 1 addition & 6 deletions install-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Usage: powershell -ExecutionPolicy Bypass -File install-windows.ps1

param(
[string]$InstallDir = "$env:PROGRAMFILES\ClaudeCodeSetup",
[string]$InstallDir = "$env:LOCALAPPDATA\Programs\ClaudeCodeSetup",
[switch]$SkipConfig
)

Expand Down Expand Up @@ -50,11 +50,6 @@ if ($pathEnv -notlike "*$InstallDir*") {
Write-Host "✅ Added to PATH" -ForegroundColor Green
}

# Make executable
Write-Host "🔐 Setting permissions..." -ForegroundColor Yellow
icacls $exePath /grant:r "$env:USERNAME`:(F)" /inheritance:e /T | Out-Null
Write-Host "✅ Executable set" -ForegroundColor Green

# Run install command (optional config)
if (-not $SkipConfig) {
Write-Host ""
Expand Down
4 changes: 0 additions & 4 deletions src/mcp_server.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
use serde_json::json;
use std::io::{self, BufRead, Write};

#[derive(Debug)]
pub struct McpServer;

#[derive(Debug, serde::Deserialize)]
pub struct JsonRpcRequest {
pub jsonrpc: String,
pub id: serde_json::Value,
pub method: String,
#[serde(default)]
Expand Down
Loading