VoicesColeby commited on
Commit
266130e
Β·
verified Β·
1 Parent(s): 0321d40

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +18 -7
README.md CHANGED
@@ -1,13 +1,24 @@
1
  ---
2
- title: Text Processor Mcp
3
- emoji: πŸ“Š
4
- colorFrom: gray
5
- colorTo: purple
6
  sdk: gradio
7
- sdk_version: 6.14.0
8
- python_version: '3.13'
9
  app_file: app.py
10
  pinned: false
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Text Processor MCP
3
+ emoji: πŸ“
4
+ colorFrom: blue
5
+ colorTo: green
6
  sdk: gradio
7
+ sdk_version: 5.32.0
8
+ python_version: "3.12"
9
  app_file: app.py
10
  pinned: false
11
  ---
12
 
13
+ # Text Processor β€” MCP Server
14
+
15
+ Unit 2 hands-on for the [HuggingFace Context Course](https://huggingface.co/learn/context-course/unit2/).
16
+
17
+ A Gradio UI that doubles as an MCP server: the human-facing tabs and the
18
+ `/gradio_api/mcp/` endpoint expose the same three tools.
19
+
20
+ - **analyze_text** β€” character / word / sentence statistics
21
+ - **extract_keywords** β€” top-N keywords by frequency (stopwords removed)
22
+ - **check_reading_level** β€” Flesch-Kincaid-style grade + coarse label
23
+
24
+ Source: <https://github.com/ColebyPearson/HFcontextcourse/tree/main/unit_2/text-processor-mcp>