esa.io mcp server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"esa": {
"args": [
"/path/to/mcp_esa/mcp_esa.rb"
],
"command": "ruby"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for esa.io API integration. Enables Claude Desktop and other MCP clients to interact with esa.io teams, posts, comments, and members.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / writing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
A markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
MCP Security Weekly
Get CVE alerts and security updates for Mcp_esa and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for esa.io API integration. Enables Claude Desktop and other MCP clients to interact with esa.io teams, posts, comments, and members.
# Clone the repository
git clone https://github.com/iberianpig/mcp_esa.git
cd mcp_esa
# Make the script executable
chmod +x mcp_esa.rb
# Download the single file
curl -O https://raw.githubusercontent.com/iberianpig/mcp_esa/main/mcp_esa.rb
chmod +x mcp_esa.rb
export ESA_ACCESS_TOKEN="your_token_here"
export ESA_TEAM_NAME="your_team_name"
# Add as local configuration (default)
claude mcp add --transport stdio \
--env ESA_ACCESS_TOKEN=$ESA_ACCESS_TOKEN \
--env ESA_TEAM_NAME=your_team_name \
esa -- ruby /absolute/path/to/mcp_esa.rb
# Add for project sharing (saves to .mcp.json)
claude mcp add --transport stdio --scope project \
--env ESA_ACCESS_TOKEN=$ESA_ACCESS_TOKEN \
--env ESA_TEAM_NAME=your_team_name \
esa -- ruby /absolute/path/to/mcp_esa.rb
Options:
--transport stdio: Run as a local process--scope: Where to save the config (local=personal, project=team shared, user=cross-project)--env KEY=value: Set environment variables (can specify multiple)Management commands:
claude mcp list # List all servers
claude mcp get esa # Show server details
claude mcp remove esa # Remove a server
.mcp.json Configuration{
"mcpServers": {
"esa": {
"command": "ruby",
"args": ["/path/to/mcp_esa/mcp_esa.rb"]
}
}
}
Show me the latest posts from esa.io
Create a new post titled "Meeting Notes"
Show comments for post #123
echo '{"jsonrpc":"2.0","id":0,"method":"tools/list"}' | ./mcp_esa.rb
list posts with filtering and pagination:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_posts_tool","arguments":{}}}' | ./mcp_esa.rb
Posts
get_posts_tool - List posts with filtering and paginationget_post_tool - Get detailed post informationcreate_post_tool - Create new postsupdate_post_tool - Update existing postsTeams
get_teams - List teams you belong toget_team - Get team detailsget_members - List team membersComments
get_comments - List comments for a postcreate_comment - Add new comments