Text Processing
Score resume bullet points line-by-line: strong-verb matching (Implemented/Led/Owned vs Worked/Helped), quantified-metric detection (%/$/counts/time), length & repetition audit, industry buzzword blacklist (synergy/leverage/rockstar/ninja). Returns 0–100 per bullet with rewrite suggestions and synonym swaps.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/resume-bullet-impact-meter' \
-H 'Content-Type: application/json' \
-d '{"bullets":"Worked on the authentication system and helped the team with various tasks.\nMigrated legacy auth from session cookies to JWT, cutting auth-related support tickets 42% across 1.2M users.","industry":"tech","strictness":"balanced"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/resume-bullet-impact-meter| Name | Type | Required | Description |
|---|---|---|---|
| bullets | textarea | Yes | — |
| industry | select | No | — |
| strictness | select | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-resume-bullet-impact-meter": {
"name": "resume-bullet-impact-meter",
"description": "Score resume bullet points line-by-line: strong-verb matching (Implemented/Led/Owned vs Worked/Helped), quantified-metric detection (%/$/counts/time), length & repetition audit, industry buzzword blacklist (synergy/leverage/rockstar/ninja). Returns 0–100 per bullet with rewrite suggestions and synonym swaps.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=resume-bullet-impact-meter",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "resume-bullet-impact-meter",
"arguments": {
"bullets": "Worked on the authentication system and helped the team with various tasks.\nMigrated legacy auth from session cookies to JWT, cutting auth-related support tickets 42% across 1.2M users.",
"industry": "tech",
"strictness": "balanced"
}
}
}Questions or issues? Contact [email protected]