yogimathius/symbols-awakening-mcp
3.1
If you are the rightful owner of symbols-awakening-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Symbols Awakening MCP is a symbolic reasoning engine that serves as a Model Context Protocol (MCP) server for symbolic ontology operations.
Symbols Awakening MCP
A symbolic reasoning engine that serves as a Model Context Protocol (MCP) server for symbolic ontology operations.
๐ Quick Start
Installation & Usage
One-time usage (recommended):
# Run immediately without installation
npx symbols-awakening-mcp --help
npx symbols-awakening-mcp --version
# Start MCP server (for use with Claude Desktop, Cursor, etc.)
npx symbols-awakening-mcp
Global installation:
# Install globally
npm install -g symbols-awakening-mcp
# Use anywhere
symbols-awakening-mcp --help
symbols-awakening-mcp
MCP Client Configuration
Claude Desktop
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"symbols-awakening": {
"command": "npx",
"args": ["-y", "symbols-awakening-mcp"],
"env": {
"DATABASE_URL": "postgresql://user:password@localhost:5432/symbols_db"
}
}
}
}
Cursor IDE
Add to your MCP configuration:
{
"symbols-awakening": {
"command": "npx",
"args": ["-y", "symbols-awakening-mcp"],
"env": {
"DATABASE_URL": "postgresql://user:password@localhost:5432/symbols_db"
}
}
}
Local Development
# Clone and install dependencies
git clone https://github.com/yogimathius/symbols-awakening-mcp.git
cd symbols-awakening-mcp
pnpm install
# Set up database
cp .env.example .env
# Edit .env with your PostgreSQL connection
# Generate Prisma client and seed database
pnpm prisma generate
pnpm prisma db push
pnpm prisma db seed
# Run in development mode
pnpm dev
# Build for production
pnpm build
# Run tests
pnpm test
๐ Current Status
โ Completed Features
- Project Setup: Modern TypeScript project with Vite and Vitest
- CLI Binary: Executable via
npx symbols-awakening-mcp
- MCP Server: Basic MCP server with stdio transport
- Type System: Comprehensive TypeScript interfaces for Symbol ontology
- Testing: Vitest test framework with coverage reporting
- Build System: Vite-based build with proper CLI binary generation
- Development Tools: ESLint, TypeScript strict mode, hot reload
๐ In Progress
- Database layer implementation
- Core MCP tools (get_symbols, search_symbols, etc.)
- PostgreSQL integration
- Data import/export functionality
๐ Planned Features
- Symbol ontology database operations
- Full-text search capabilities
- Category-based filtering
- Symbol relationship mapping
- REST API (optional)
- Data seeding and CSV import
๐ Technology Stack
- Runtime: Node.js 18+
- Language: TypeScript (strict mode)
- Build Tool: Vite
- Testing: Vitest with coverage
- Database: PostgreSQL (planned)
- Protocol: Model Context Protocol (MCP)
- Transport: Stdio (for CLI usage)
๐ Usage
CLI Commands
# Show help
symbols-awakening-mcp --help
# Show version
symbols-awakening-mcp --version
# Start MCP server (default)
symbols-awakening-mcp
MCP Integration
Claude Desktop
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"symbols-awakening": {
"command": "npx",
"args": ["-y", "symbols-awakening-mcp"]
}
}
}
Cursor IDE
Add to your MCP configuration:
{
"symbols-awakening": {
"command": "npx",
"args": ["-y", "symbols-awakening-mcp"]
}
}
๐งช Testing
# Run all tests
pnpm test
# Run tests in watch mode
pnpm test:watch
# Run tests with coverage
pnpm test:coverage
# Run tests with UI
pnpm test:ui
๐ Development
Project Structure
symbols-awakening-mcp/
โโโ src/
โ โโโ __tests__/ # Test setup and utilities
โ โโโ types/ # TypeScript interfaces
โ โ โโโ Symbol.ts # Core symbol types
โ โ โโโ Symbol.test.ts # Type tests
โ โโโ database/ # Database layer (planned)
โ โโโ mcp/ # MCP server implementation (planned)
โ โโโ index.ts # CLI entry point
โโโ dist/ # Built output
โโโ docs/ # Documentation
โโโ data/ # Sample data and seeds
โโโ scripts/ # Build and utility scripts
Development Rules
We follow strict development practices:
- Test-Driven Development: Write tests first
- TypeScript Strict Mode: No
any
types, full type safety - Continuous Verification: Tests and type-checking on every change
- Code Quality: ESLint with strict rules
Available Scripts
pnpm build # Build for production
pnpm dev # Development mode with hot reload
pnpm test # Run test suite
pnpm test:watch # Run tests in watch mode
pnpm test:coverage # Run tests with coverage report
pnpm test:ui # Run tests with UI
pnpm type-check # TypeScript type checking
pnpm lint # Run ESLint
pnpm lint:fix # Fix ESLint issues
pnpm clean # Clean build artifacts
๐ง Configuration
Environment Variables
Variable | Description | Default | Required |
---|---|---|---|
DATABASE_URL | PostgreSQL connection string | - | Yes (when using database) |
NODE_ENV | Environment mode | development | No |
TypeScript Configuration
The project uses strict TypeScript settings:
- Strict null checks
- No implicit any
- No unused locals/parameters
- Exact optional property types
- All strict compiler options enabled
๐ API Reference
Symbol Types
interface Symbol {
id: string;
name: string;
category: string;
description: string;
interpretations: Record<string, string>;
related_symbols: string[];
properties: Record<string, unknown>;
}
interface SymbolSet {
id: string;
name: string;
category: string;
description: string;
symbols: Record<string, unknown>;
}
MCP Tools (Planned)
get_symbols
- List symbols with optional limitsearch_symbols
- Search symbols by text queryfilter_by_category
- Filter symbols by categoryget_categories
- Get all available categoriesget_symbol_sets
- List symbol setssearch_symbol_sets
- Search symbol sets
๐ค Contributing
- Follow the development rules in
DEVELOPMENT_RULES.md
- Write tests first (TDD approach)
- Ensure TypeScript strict mode compliance
- Run the full test suite before committing
- Use conventional commit messages
๐ License
Mozilla Public License 2.0 (MPL-2.0)