use-geogebra-mcp

use-geogebra-mcp is a skill for Codex from 123pc/Geogebra_mcp. It costs 84 tokens per session (2,213 once invoked), scanned A, original, MIT.

A procedure for using an MCP server to control GeoGebra, a mathematics application for geometry, graphs, animations, and saved constructions. It covers GeoGebra Web Runtime by default and GeoGebra Classic 6 as an option.

In plain words
What is it for?
It is for setting up, diagnosing, and operating GeoGebra; drawing geometry, plotting functions, creating animated mechanisms, saving .ggb files, and exporting PNG screenshots.
Why use it?
It gives an AI coding agent a defined setup and troubleshooting path, including status checks and safe handling of an already-open GeoGebra session. It avoids asking the user to close unsaved work by default.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Claude Code; mentions Codex.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/setup_geogebra_mcp.py.

Good fit It is for setting up, diagnosing, and operating GeoGebra; drawing geometry, plotting functions, creating animated mechanisms, saving .ggb files, and exporting PNG screenshots.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/123pc/Geogebra_mcp
agentmods
npx agentmods add skills/123pc/geogebra_mcp/use-geogebra-mcp

Made for: Codex.

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 use-geogebra-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/123pc/geogebra_mcp/use-geogebra-mcp/github.svg)](https://agentmods.dev/skills/123pc/geogebra_mcp/use-geogebra-mcp)
Your own site
<a href="https://agentmods.dev/skills/123pc/geogebra_mcp/use-geogebra-mcp"><img src="https://agentmods.dev/badge/skills/123pc/geogebra_mcp/use-geogebra-mcp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for use-geogebra-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/123pc/geogebra_mcp/use-geogebra-mcp"><img src="https://agentmods.dev/badge/skills/123pc/geogebra_mcp/use-geogebra-mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,213 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00084 $0.02213
Opus 5 $0.00042 $0.01107
Sonnet 5 $0.00017 $0.00443
Haiku 4.5 $0.00008 $0.00221

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

Security

Grade A, and why

use-geogebra-mcp 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 10d 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.

skills/use-geogebra-mcp/SKILL.md · 240 lines

How it starts

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

Use GeoGebra MCP

Use this skill when the user wants an AI coding agent to operate GeoGebra through this project's MCP server. The intended path is:

AI agent -> MCP stdio -> Python geogebra-mcp-server -> Node daemon -> GeoGebra Web Runtime or Classic 6 CDP -> ggbApplet API

Core Rules

  • Prefer the installed console command geogebra-mcp-server; use python <repo>/geogebra_mcp_server.py as the source-tree fallback.
  • Prefer structured MCP tools: geogebra_run_commands and geogebra_create_construction.
  • Use legacy JSON-string tools only for older clients: geogebra_batch and geogebra_draw_mechanism.
  • geogebra_status is safe as a first call: if GeoGebra is closed, the server should attempt auto-launch.
  • Do not ask the user to manually open GeoGebra until auto-launch and diagnostics have been attempted.
  • Do not kill an already-open GeoGebra session by default. Only set GEOGEBRA_RESTART_EXISTING=1 after the user confirms their GeoGebra work is saved.

Setup From Source

From the repository root:

For MATLAB Agentic Toolkit style automated setup, prefer:

python scripts/setup_geogebra_mcp.py

This installs dependencies, writes common global MCP client config, copies bundled skills, and runs diagnostics.

Manual setup:

npm install
python -m pip install -e .
geogebra-mcp-doctor

Expected geogebra-mcp-doctor behavior:

  • [OK] daemon_js and [OK] package_json mean package resources are present.
  • [OK] geogebra_install means GeoGebra Classic 6 was found (desktop backend only; skipped for Web Runtime).
  • [OK] puppeteer means Chromium can be launched for Web Runtime.
  • [FAIL] cdp_port: localhost:9222 is acceptable for desktop backend if GeoGebra is currently closed; the first MCP tool call should auto-launch it.
  • For Web Runtime failures, check [OK] web_assets and [OK] puppeteer; run node scripts/smoke_web_runtime.js.

If geogebra-mcp-doctor is missing, install the package first:

python -m pip install -e .

Read the full file on GitHub · 240 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 240 lines · 84 tokens per session scan A e469cdb37e30

Subscribe to this mod's changes

use-geogebra-mcp is a skill published in the GitHub repository 123pc/Geogebra_mcp (4 stars, last pushed 3mo ago), licensed MIT. It adds 84 tokens to every session and 2,213 once invoked, about $0.0004 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-31.