- Home
- MCP servers
- Angular
Angular
- typescript
3
GitHub Stars
typescript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"saipranay-gangula-angular-mcp-server": {
"command": "npx",
"args": [
"angular-mcp-server"
]
}
}
}You can access Angular documentation through an MCP server that exposes targeted search, topic details, category listings, an overview, and practical code examples. This enables AI assistants to retrieve relevant Angular information quickly and generate contextually appropriate responses for developers and learners.
How to use
Connect your MCP client to the Angular MCP Server and start querying. You can search for Angular topics, fetch detailed information about a specific topic, list all categories with topic counts, obtain a comprehensive overview of Angular features, and find practical code examples for various Angular concepts. Use natural language queries to get concise results tailored to your needs.
How to install
Prerequisites you need before starting: Node.js v18 or higher and npm v8 or higher.
Install the MCP server client package and start the server using the provided MCP command. Run the following commands in sequence to set up and launch the server locally:
# Install dependencies and run the MCP server via npx
npm install
npx angular-mcp-server
Configured MCP connection (stdio)
You can run the MCP server locally with a stdio configuration using npx. The following configuration is used to connect the CLI to the local MCP server.
{
"mcpServers": {
"angular_docs": {
"command": "npx",
"args": ["angular-mcp-server"]
}
}
}
Available tools
search_angular_docs
Search Angular documentation for topics, concepts, or keywords with optional filters for category and result limit.
get_angular_topic
Retrieve detailed information about a specific Angular topic.
list_angular_categories
List all available Angular documentation categories with topic counts.
get_angular_overview
Get a comprehensive overview of the Angular framework and its features.
find_angular_examples
Find code examples and practical implementations for Angular concepts.