Aha! MCP Server

Aha! MCP Server

Enables interaction with Aha! product management platform through GraphQL API. Supports retrieving features, requirements, and pages by reference number, as well as searching documents across Aha! workspaces.

Category
Visit Server

README

Aha! MCP Server - Python FastMCP Implementation

A Python-based MCP server for interacting with Aha! API using FastMCP with HTTP streaming capabilities.

Features

  • HTTP Streaming: Built with FastMCP for efficient HTTP streaming
  • GraphQL Integration: Uses GraphQL to query Aha! API
  • Three Main Tools:
    • get_record: Get features or requirements by reference number
    • get_page: Get pages with optional parent relationships
    • search_documents: Search for Aha! documents

Environment Variables

  • AHA_API_TOKEN: Your Aha! API token (required)
  • AHA_DOMAIN: Your Aha! domain name (required)
  • PORT: Server port (default: 9004)

Installation

pip install -r requirements.txt

Running

Local Development

# Set environment variables
export AHA_API_TOKEN="your_token_here"
export AHA_DOMAIN="your_domain_here"

# Run with HTTP streaming (default)
python main.py

# Or run with stdio transport
python main.py --transport stdio

Docker

# Build the image
docker build -t aha-mcp .

# Run the container
docker run -e AHA_API_TOKEN="your_token_here" -e AHA_DOMAIN="your_domain_here" -p 9004:9004 aha-mcp

Tools

get_record

Get an Aha! feature or requirement by reference number.

  • Input: reference (string) - e.g., "DEVELOP-123" or "ADT-123-1"
  • Output: JSON with name and description

get_page

Get an Aha! page by reference number with optional relationships.

  • Input:
    • reference (string) - e.g., "ABC-N-213"
    • include_parent (boolean, optional) - Include parent page
  • Output: JSON with page details, children, and optional parent

search_documents

Search for Aha! documents.

  • Input:
    • query (string) - Search query
    • searchable_type (string, optional) - Document type (default: "Page")
  • Output: JSON with search results and pagination info

Architecture

  • server.py: Main FastMCP server with tool definitions
  • handlers.py: Business logic for handling each tool
  • queries.py: GraphQL queries for Aha! API
  • types.py: Python dataclasses for type safety
  • main.py: Entry point for running the server

Inspired from https://github.com/aha-develop/aha-mcp

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured